From: Greg Sabino Mullane Date: Thu, 22 Apr 2010 20:28:25 +0000 (-0400) Subject: What the heck was that doing there? X-Git-Tag: 2.15.1~32 X-Git-Url: http://git.postgresql.org/gitweb/static/main.js?a=commitdiff_plain;h=04353dfe9b5121dc101d20dc872c83ee08ce4199;p=check_postgres.git What the heck was that doing there? --- 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'};