added missed configuration for INSERT IGNORE
This commit is contained in:
@@ -11,8 +11,10 @@ $Source$
|
||||
libraries/dbi/mysqli.dbi.lib.php: Support for unbuffered queries -
|
||||
PMA_DBI_QUERY_UNBUFFERED and fix support of PMA_DBI_QUERY_STORE.
|
||||
* libraries/export/*.php: Use unbuffered queries (patch #890075).
|
||||
* libraries/export/sql.php, libraries/display_export.lib.php, lang/*:
|
||||
Add support for INSERT IGNORE and UPDATE IGNORE.
|
||||
* libraries/export/sql.php, libraries/display_export.lib.php, lang/*,
|
||||
config.inc.php, libraries/common.lib.php,
|
||||
libraries/config_import.lib.php: Add support for INSERT IGNORE and
|
||||
UPDATE IGNORE.
|
||||
|
||||
2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/common.lib.php, libraries/display*, lang/*:
|
||||
|
@@ -339,6 +339,7 @@ $cfg['Export']['sql_dates'] = FALSE;
|
||||
$cfg['Export']['sql_relation'] = FALSE;
|
||||
$cfg['Export']['sql_columns'] = FALSE;
|
||||
$cfg['Export']['sql_delayed'] = FALSE;
|
||||
$cfg['Export']['sql_ignore'] = FALSE;
|
||||
$cfg['Export']['sql_type'] = 'insert'; // insert/update/replace
|
||||
$cfg['Export']['sql_extended'] = FALSE;
|
||||
$cfg['Export']['sql_comments'] = FALSE;
|
||||
|
@@ -136,7 +136,7 @@ if (isset($cfg['FileRevision'])) {
|
||||
} else {
|
||||
$cfg['FileRevision'] = array(1, 1);
|
||||
}
|
||||
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 9)) {
|
||||
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 10)) {
|
||||
require_once('./libraries/config_import.lib.php');
|
||||
}
|
||||
|
||||
|
@@ -1272,6 +1272,9 @@ if (!isset($cfg['Export']['sql_columns'])) {
|
||||
if (!isset($cfg['Export']['sql_delayed'])) {
|
||||
$cfg['Export']['sql_delayed'] = FALSE;
|
||||
}
|
||||
if (!isset($cfg['Export']['sql_ignore'])) {
|
||||
$cfg['Export']['sql_ignore'] = FALSE;
|
||||
}
|
||||
if (!isset($cfg['Export']['sql_type'])) {
|
||||
$cfg['Export']['sql_type'] = 'insert';
|
||||
}
|
||||
|
Reference in New Issue
Block a user