DELIMITER should not be commented out (bug #1612870).

This commit is contained in:
Michal Čihař
2007-01-02 09:24:39 +00:00
parent 5164ad3cc0
commit bcf28b61ea
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
$Id$
$Source$
2007-01-02 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php: DELIMITER should not be commented out (bug
#1612870).
2006-12-20 Marc Delisle <lem9@users.sourceforge.net>
* libraries/export/sql.php: bug #1619647, export of query results
should not contain procedure definitions

View File

@@ -294,7 +294,7 @@ function PMA_exportDBFooter($db)
. $comment_marker . $crlf
. $comment_marker . $GLOBALS['strProcedures'] . $crlf
. $comment_marker . $crlf
. $comment_marker . 'DELIMITER ' . $delimiter . $crlf
. 'DELIMITER ' . $delimiter . $crlf
. $comment_marker . $crlf;
foreach($procedure_names as $procedure_name) {
@@ -302,7 +302,7 @@ function PMA_exportDBFooter($db)
}
$procs_funcs .= $comment_marker . $crlf
. $comment_marker . 'DELIMITER ;' . $crlf
. 'DELIMITER ;' . $crlf
. $comment_marker . $crlf;
}