From: Jakub Vrana Date: Tue, 25 Feb 2025 04:41:12 +0000 (+0100) Subject: Remove bogus comment X-Git-Tag: v4.17.1~10 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=d12ea17b1771c09d111cd26f80558e606d88b9fd;p=adminer.git Remove bogus comment --- 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'