diff --git a/contrib/pg_visibility/expected/pg_visibility.out b/contrib/pg_visibility/expected/pg_visibility.out index e10f1706015..d26f0ab7589 100644 --- a/contrib/pg_visibility/expected/pg_visibility.out +++ b/contrib/pg_visibility/expected/pg_visibility.out @@ -207,7 +207,7 @@ select pg_truncate_visibility_map('test_partition'); -- test the case where vacuum phase I does not need to modify the heap buffer -- and only needs to set the VM -create table test_vac_unmodified_heap(a int); +create temp table test_vac_unmodified_heap(a int); insert into test_vac_unmodified_heap values (1); vacuum (freeze) test_vac_unmodified_heap; select pg_visibility_map_summary('test_vac_unmodified_heap'); diff --git a/contrib/pg_visibility/sql/pg_visibility.sql b/contrib/pg_visibility/sql/pg_visibility.sql index 57af8a0c5b6..0888adb96a6 100644 --- a/contrib/pg_visibility/sql/pg_visibility.sql +++ b/contrib/pg_visibility/sql/pg_visibility.sql @@ -97,7 +97,7 @@ select pg_truncate_visibility_map('test_partition'); -- test the case where vacuum phase I does not need to modify the heap buffer -- and only needs to set the VM -create table test_vac_unmodified_heap(a int); +create temp table test_vac_unmodified_heap(a int); insert into test_vac_unmodified_heap values (1); vacuum (freeze) test_vac_unmodified_heap; select pg_visibility_map_summary('test_vac_unmodified_heap');