]> git.joonet.de Git - adminer.git/commitdiff
Remove bogus comment
authorJakub Vrana <jakub@vrana.cz>
Tue, 25 Feb 2025 04:41:12 +0000 (05:41 +0100)
committerJakub Vrana <jakub@vrana.cz>
Tue, 25 Feb 2025 04:41:12 +0000 (05:41 +0100)
adminer/drivers/pgsql.inc.php

index 43228c8a510c1d304165c918a893d1d736b88aa2..23f6254837d97e5e27189d28d5ed4c921651a8ef 100644 (file)
@@ -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'