You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/regress/expected/rules.out
-9
Original file line number
Diff line number
Diff line change
@@ -2188,15 +2188,6 @@ pg_stats| SELECT n.nspname AS schemaname,
2188
2188
JOIN pg_attribute a ON (((c.oid = a.attrelid) AND (a.attnum = s.staattnum))))
2189
2189
LEFT JOIN pg_namespace n ON ((n.oid = c.relnamespace)))
2190
2190
WHERE ((NOT a.attisdropped) AND has_column_privilege(c.oid, a.attnum, 'select'::text) AND ((c.relrowsecurity = false) OR (NOT row_security_active(c.oid))));
2191
-
pg_stats_ext| SELECT n.nspname AS schemaname,
2192
-
c.relname AS tablename,
2193
-
s.staname,
2194
-
s.stakeys AS attnums,
2195
-
length((s.standistinct)::bytea) AS ndistbytes,
2196
-
length((s.stadependencies)::bytea) AS depsbytes
2197
-
FROM ((pg_statistic_ext s
2198
-
JOIN pg_class c ON ((c.oid = s.starelid)))
2199
-
LEFT JOIN pg_namespace n ON ((n.oid = c.relnamespace)));
0 commit comments