@@ -61,7 +61,7 @@ old_8_3_check_for_name_data_type_usage(ClusterInfo *cluster)
6161 " a.atttypid = 'pg_catalog.name'::pg_catalog.regtype AND "
6262 " c.relnamespace = n.oid AND "
6363 /* exclude possible orphaned temp tables */
64- " n.nspname !~ '^pg_temp_' AND "
64+ " n.nspname !~ '^pg_temp_' AND "
6565 " n.nspname !~ '^pg_toast_temp_' AND "
6666 " n.nspname NOT IN ('pg_catalog', 'information_schema')" );
6767
@@ -151,7 +151,7 @@ old_8_3_check_for_tsquery_usage(ClusterInfo *cluster)
151151 " a.atttypid = 'pg_catalog.tsquery'::pg_catalog.regtype AND "
152152 " c.relnamespace = n.oid AND "
153153 /* exclude possible orphaned temp tables */
154- " n.nspname !~ '^pg_temp_' AND "
154+ " n.nspname !~ '^pg_temp_' AND "
155155 " n.nspname !~ '^pg_toast_temp_' AND "
156156 " n.nspname NOT IN ('pg_catalog', 'information_schema')" );
157157
@@ -328,7 +328,7 @@ old_8_3_rebuild_tsvector_tables(ClusterInfo *cluster, bool check_mode)
328328 " a.atttypid = 'pg_catalog.tsvector'::pg_catalog.regtype AND "
329329 " c.relnamespace = n.oid AND "
330330 /* exclude possible orphaned temp tables */
331- " n.nspname !~ '^pg_temp_' AND "
331+ " n.nspname !~ '^pg_temp_' AND "
332332 " n.nspname !~ '^pg_toast_temp_' AND "
333333 " n.nspname NOT IN ('pg_catalog', 'information_schema')" );
334334
@@ -700,7 +700,7 @@ old_8_3_create_sequence_script(ClusterInfo *cluster)
700700 "WHERE c.relkind = 'S' AND "
701701 " c.relnamespace = n.oid AND "
702702 /* exclude possible orphaned temp tables */
703- " n.nspname !~ '^pg_temp_' AND "
703+ " n.nspname !~ '^pg_temp_' AND "
704704 " n.nspname !~ '^pg_toast_temp_' AND "
705705 " n.nspname NOT IN ('pg_catalog', 'information_schema')" );
706706
0 commit comments