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

This commit is contained in:
Michal Čihař
2007-01-02 09:24:56 +00:00
parent 4b503ead85
commit 6ac319f159
2 changed files with 4 additions and 2 deletions

View File

@@ -8,6 +8,8 @@ $HeadURL$
2007-01-02 Michal Čihař <michal@cihar.com> 2007-01-02 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Add <div> to allow selecting whole SQL by * libraries/common.lib.php: Add <div> to allow selecting whole SQL by
tripple click (patch #1611591). tripple click (patch #1611591).
* libraries/export/sql.php: DELIMITER should not be commented out (bug
#1612870).
2006-12-31 Marc Delisle <lem9@users.sourceforge.net> 2006-12-31 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: RFE #1602243, another cause for Missing parameter, * Documentation.html: RFE #1602243, another cause for Missing parameter,

View File

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