8000
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 8a51027 commit 3556c89Copy full SHA for 3556c89
src/bin/pg_upgrade/check.c
@@ -1911,6 +1911,10 @@ check_for_unicode_update(ClusterInfo *cluster)
1911
" UNION "
1912
" SELECT partrelid "
1913
" FROM pg_partitioned_table, patterns WHERE partexprs::text ~ p "
1914
+ " UNION "
1915
+ " SELECT ev_class "
1916
+ " FROM pg_rewrite, pg_class, patterns "
1917
+ " WHERE ev_class = pg_class.oid AND relkind = 'm' AND ev_action::text ~ p"
1918
" ) s(reloid), pg_class c, pg_namespace n, pg_database d "
1919
" WHERE s.reloid = c.oid AND c.relnamespace = n.oid AND "
1920
" d.datname = current_database() AND "
0 commit comments