mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 01:54:00 +02:00
Sort existing for ===
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@167 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -19,6 +19,8 @@ if ($_POST && !$error && !$_POST["add"]) {
|
|||||||
}
|
}
|
||||||
if ($columns) {
|
if ($columns) {
|
||||||
foreach ($indexes as $name => $existing) {
|
foreach ($indexes as $name => $existing) {
|
||||||
|
ksort($existing["columns"]);
|
||||||
|
ksort($existing["lengths"]);
|
||||||
if ($index["type"] == $existing["type"] && $existing["columns"] === $columns && $existing["lengths"] === $lengths) {
|
if ($index["type"] == $existing["type"] && $existing["columns"] === $columns && $existing["lengths"] === $lengths) {
|
||||||
unset($indexes[$name]);
|
unset($indexes[$name]);
|
||||||
continue 2;
|
continue 2;
|
||||||
@@ -50,7 +52,7 @@ if ($_POST) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$index = $row["indexes"][count($row["indexes"]) - 1];
|
$index = $row["indexes"][count($row["indexes"]) - 1];
|
||||||
if ($index["type"] || array_filter($index["columns"], 'strlen') || array_filter($index["columns"], 'length')) {
|
if ($index["type"] || array_filter($index["columns"], 'strlen') || array_filter($index["lengths"], 'strlen')) {
|
||||||
$row["indexes"][] = array("columns" => array(1 => ""));
|
$row["indexes"][] = array("columns" => array(1 => ""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user