rfe #1525 Generate keys one per line
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
f481333e74
commit
d345556888
@ -15,6 +15,7 @@ phpMyAdmin - ChangeLog
|
||||
+ rfe #1578 Warn about reserved word only when a column is created
|
||||
+ rfe #1590 Recaptcha API v2
|
||||
+ rfe #1580 Individual Zeroconf PMA tables support
|
||||
+ rfe #1525 Generate keys one per line
|
||||
|
||||
4.3.7.0 (not yet released)
|
||||
- bug #4694 js error on marking table as favorite in Safari (in private mode)
|
||||
|
||||
@ -1340,15 +1340,13 @@ class ExportSql extends ExportPlugin
|
||||
$sql_indexes_query_start = 'ALTER TABLE '
|
||||
. PMA_Util::backquoteCompat(
|
||||
$table_alias, $compat, $sql_backquotes
|
||||
)
|
||||
. $crlf . ' ';
|
||||
);
|
||||
$sql_indexes_query .= $sql_indexes_query_start;
|
||||
|
||||
$sql_indexes_start = 'ALTER TABLE '
|
||||
. PMA_Util::backquoteCompat(
|
||||
$table_alias, $compat, $sql_backquotes
|
||||
)
|
||||
. $crlf . ' ';
|
||||
);
|
||||
$sql_indexes .= $sql_indexes_start;
|
||||
}
|
||||
if ($update_indexes_increments && preg_match(
|
||||
@ -1490,7 +1488,7 @@ class ExportSql extends ExportPlugin
|
||||
$sql_index_ended = false;
|
||||
}
|
||||
|
||||
$tmp_str = " ADD " . $sql_lines[$j];
|
||||
$tmp_str = $crlf . " ADD " . $sql_lines[$j];
|
||||
$sql_indexes_query .= $tmp_str;
|
||||
$sql_indexes .= $tmp_str;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user