bug #1619647, export of query results should not contain procedure definitions
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2006-12-20 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* libraries/export/sql.php: bug #1619647, export of query results
|
||||||
|
should not contain procedure definitions
|
||||||
|
|
||||||
2006-12-15 Marc Delisle <lem9@users.sourceforge.net>
|
2006-12-15 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* Documentation.html, libraries/common.lib.php, config.default.php:
|
* Documentation.html, libraries/common.lib.php, config.default.php:
|
||||||
bug #1615313, doc referred to HTTP so enable the code to accept
|
bug #1615313, doc referred to HTTP so enable the code to accept
|
||||||
|
@@ -284,7 +284,7 @@ function PMA_exportDBFooter($db)
|
|||||||
unset($GLOBALS['sql_constraints']);
|
unset($GLOBALS['sql_constraints']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PMA_MYSQL_INT_VERSION >= 50000) {
|
if (PMA_MYSQL_INT_VERSION >= 50000 && isset($GLOBALS['sql_structure'])) {
|
||||||
$procs_funcs = '';
|
$procs_funcs = '';
|
||||||
|
|
||||||
$procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE');
|
$procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE');
|
||||||
|
Reference in New Issue
Block a user