@@ -61,7 +61,7 @@ old_8_3_check_for_name_data_type_usage(ClusterInfo *cluster)
61
61
" a.atttypid = 'pg_catalog.name'::pg_catalog.regtype AND "
62
62
" c.relnamespace = n.oid AND "
63
63
/* exclude possible orphaned temp tables */
64
- " n.nspname !~ '^pg_temp_' AND "
64
+ " n.nspname !~ '^pg_temp_' AND "
65
65
" n.nspname !~ '^pg_toast_temp_' AND "
66
66
" n.nspname NOT IN ('pg_catalog', 'information_schema')" );
67
67
@@ -151,7 +151,7 @@ old_8_3_check_for_tsquery_usage(ClusterInfo *cluster)
151
151
" a.atttypid = 'pg_catalog.tsquery'::pg_catalog.regtype AND "
152
152
" c.relnamespace = n.oid AND "
153
153
/* exclude possible orphaned temp tables */
154
- " n.nspname !~ '^pg_temp_' AND "
154
+ " n.nspname !~ '^pg_temp_' AND "
155
155
" n.nspname !~ '^pg_toast_temp_' AND "
156
156
" n.nspname NOT IN ('pg_catalog', 'information_schema')" );
157
157
@@ -328,7 +328,7 @@ old_8_3_rebuild_tsvector_tables(ClusterInfo *cluster, bool check_mode)
328
328
" a.atttypid = 'pg_catalog.tsvector'::pg_catalog.regtype AND "
329
329
" c.relnamespace = n.oid AND "
330
330
/* exclude possible orphaned temp tables */
331
- " n.nspname !~ '^pg_temp_' AND "
331
+ " n.nspname !~ '^pg_temp_' AND "
332
332
" n.nspname !~ '^pg_toast_temp_' AND "
333
333
" n.nspname NOT IN ('pg_catalog', 'information_schema')" );
334
334
@@ -700,7 +700,7 @@ old_8_3_create_sequence_script(ClusterInfo *cluster)
700
700
"WHERE c.relkind = 'S' AND "
701
701
" c.relnamespace = n.oid AND "
702
702
/* exclude possible orphaned temp tables */
703
- " n.nspname !~ '^pg_temp_' AND "
703
+ " n.nspname !~ '^pg_temp_' AND "
704
704
" n.nspname !~ '^pg_toast_temp_' AND "
705
705
" n.nspname NOT IN ('pg_catalog', 'information_schema')" );
706
706
0 commit comments