summaryrefslogtreecommitdiff
path: root/check_postgres.pl
diff options
context:
space:
mode:
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-xcheck_postgres.pl1
1 files changed, 0 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl
index 1f5412034..a38188cd5 100755
--- a/check_postgres.pl
+++ b/check_postgres.pl
@@ -4965,7 +4965,6 @@ JOIN pg_namespace n ON (n.oid = c.relnamespace)
JOIN pg_user u ON (u.usesysid = c.relowner)
WHERE nspname !~ '^pg_t'
};
- exists $filter{notriggers} and $SQL .= q{ AND relkind <> 'r'};
exists $filter{noviews} and $SQL .= q{ AND relkind <> 'v'};
exists $filter{noindexes} and $SQL .= q{ AND relkind <> 'i'};
exists $filter{nosequences} and $SQL .= q{ AND relkind <> 'S'};