From d12ea17b1771c09d111cd26f80558e606d88b9fd Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 25 Feb 2025 05:41:12 +0100 Subject: [PATCH] Remove bogus comment --- adminer/drivers/pgsql.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/drivers/pgsql.inc.php b/adminer/drivers/pgsql.inc.php index 43228c8a..23f62548 100644 --- a/adminer/drivers/pgsql.inc.php +++ b/adminer/drivers/pgsql.inc.php @@ -315,7 +315,7 @@ ORDER BY d.datname"); function tables_list() { $query = "SELECT table_name, table_type FROM information_schema.tables WHERE table_schema = current_schema()"; - if (support('materializedview')) { // ' - support("materializedview") could be removed by compile.php + if (support("materializedview")) { $query .= " UNION ALL SELECT matviewname, 'MATERIALIZED VIEW'