bug #1783667 NO_AUTO_VALUE_ON_ZERO and MySQL version
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
|
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
|
||||||
|
|
||||||
|
2.11.1.0 (not yet released)
|
||||||
|
|
||||||
|
- bug #1783667 [export] NO_AUTO_VALUE_ON_ZERO and MySQL version
|
||||||
|
|
||||||
2.11.0.0 (2007-08-21)
|
2.11.0.0 (2007-08-21)
|
||||||
|
|
||||||
+ [import] support handling of DELIMITER to mimic mysql CLI, thanks to fb1
|
+ [import] support handling of DELIMITER to mimic mysql CLI, thanks to fb1
|
||||||
|
@@ -219,7 +219,7 @@ function PMA_exportHeader()
|
|||||||
|
|
||||||
/* We want exported AUTO_INCREMENT fields to have still same value, do this only for recent MySQL exports */
|
/* We want exported AUTO_INCREMENT fields to have still same value, do this only for recent MySQL exports */
|
||||||
if (!isset($GLOBALS['sql_compatibility']) || $GLOBALS['sql_compatibility'] == 'NONE') {
|
if (!isset($GLOBALS['sql_compatibility']) || $GLOBALS['sql_compatibility'] == 'NONE') {
|
||||||
$head .= $crlf . 'SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";' . $crlf;
|
$head .= $crlf . (PMA_MYSQL_INT_VERSION >= 40101 ? 'SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";' . $crlf : '');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($GLOBALS['sql_use_transaction'])) {
|
if (isset($GLOBALS['sql_use_transaction'])) {
|
||||||
|
Reference in New Issue
Block a user