diff options
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 1 |
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'}; |