We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b89c8a commit d512de2Copy full SHA for d512de2
contrib/dump_stat/dump_stat--1.0.sql
@@ -213,7 +213,8 @@ CREATE FUNCTION dump_statistic() RETURNS SETOF TEXT AS $$
213
BEGIN
214
for r in
215
select * from pg_catalog.pg_statistic
216
- where get_namespace(starelid) != to_namespace('pg_catalog') loop
+ where get_namespace(starelid) != to_namespace('pg_catalog')
217
+ and get_namespace(starelid) != to_namespace('information_schema') loop
218
219
relname := to_schema_qualified_relname(r.starelid);
220
attname := quote_literal(to_attname(relname, r.staattnum));
0 commit comments