mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 18:14:07 +02:00
PostgreSQL: Do not alter indexes with expressions
This commit is contained in:
@@ -423,13 +423,15 @@ ORDER BY a.attnum"
|
|||||||
$relname = $row["relname"];
|
$relname = $row["relname"];
|
||||||
$return[$relname]["type"] = ($row["indispartial"] ? "INDEX" : ($row["indisprimary"] ? "PRIMARY" : ($row["indisunique"] ? "UNIQUE" : "INDEX")));
|
$return[$relname]["type"] = ($row["indispartial"] ? "INDEX" : ($row["indisprimary"] ? "PRIMARY" : ($row["indisunique"] ? "UNIQUE" : "INDEX")));
|
||||||
$return[$relname]["columns"] = array();
|
$return[$relname]["columns"] = array();
|
||||||
|
$return[$relname]["descs"] = array();
|
||||||
|
if ($row["indkey"]) {
|
||||||
foreach (explode(" ", $row["indkey"]) as $indkey) {
|
foreach (explode(" ", $row["indkey"]) as $indkey) {
|
||||||
$return[$relname]["columns"][] = $columns[$indkey];
|
$return[$relname]["columns"][] = $columns[$indkey];
|
||||||
}
|
}
|
||||||
$return[$relname]["descs"] = array();
|
|
||||||
foreach (explode(" ", $row["indoption"]) as $indoption) {
|
foreach (explode(" ", $row["indoption"]) as $indoption) {
|
||||||
$return[$relname]["descs"][] = ($indoption & 1 ? '1' : null); // 1 - INDOPTION_DESC
|
$return[$relname]["descs"][] = ($indoption & 1 ? '1' : null); // 1 - INDOPTION_DESC
|
||||||
}
|
}
|
||||||
|
}
|
||||||
$return[$relname]["lengths"] = array();
|
$return[$relname]["lengths"] = array();
|
||||||
}
|
}
|
||||||
return $return;
|
return $return;
|
||||||
|
@@ -40,7 +40,6 @@ if ($_POST && !$error && !$_POST["add"] && !$_POST["drop_col"]) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($columns) {
|
|
||||||
$existing = $indexes[$name];
|
$existing = $indexes[$name];
|
||||||
if ($existing) {
|
if ($existing) {
|
||||||
ksort($existing["columns"]);
|
ksort($existing["columns"]);
|
||||||
@@ -56,6 +55,7 @@ if ($_POST && !$error && !$_POST["add"] && !$_POST["drop_col"]) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if ($columns) {
|
||||||
$alter[] = array($index["type"], $name, $set);
|
$alter[] = array($index["type"], $name, $set);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
Adminer dev:
|
Adminer dev:
|
||||||
|
PostgreSQL: Do not alter indexes with expressions
|
||||||
PostgreSQL: Fix export of indexes with expressions (bug #768)
|
PostgreSQL: Fix export of indexes with expressions (bug #768)
|
||||||
SQLite: Support CHECK constraint
|
SQLite: Support CHECK constraint
|
||||||
SQLite: Add command Check tables
|
SQLite: Add command Check tables
|
||||||
|
Reference in New Issue
Block a user