1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

PostgreSQL: Support indexes on materialized views (PR #467)

This commit is contained in:
Jakub Vrana
2025-03-07 13:13:53 +01:00
parent 22a544f71c
commit 28c171f681
4 changed files with 21 additions and 8 deletions

View File

@@ -293,6 +293,10 @@ if (isset($_GET["pgsql"])) {
}
}
function supportsIndex($table_status) {
return $table_status["Engine"] != "view";
}
function hasCStyleEscapes() {
static $c_style;
if ($c_style === null) {