diff --git a/src/test/regress/expected/reloptions.out b/src/test/regress/expected/reloptions.out index a861d167fe..cb04fb706e 100644 --- a/src/test/regress/expected/reloptions.out +++ b/src/test/regress/expected/reloptions.out @@ -89,7 +89,7 @@ ALTER TABLE reloptions_test RESET (fillfactor=12); ERROR: RESET must not include values for parameters -- Test vacuum_truncate option DROP TABLE reloptions_test; -CREATE TABLE reloptions_test(i INT NOT NULL, j text) +CREATE TEMP TABLE reloptions_test(i INT NOT NULL, j text) WITH (vacuum_truncate=false, toast.vacuum_truncate=false, autovacuum_enabled=false); diff --git a/src/test/regress/sql/reloptions.sql b/src/test/regress/sql/reloptions.sql index cf7a8a3509..4252b0202f 100644 --- a/src/test/regress/sql/reloptions.sql +++ b/src/test/regress/sql/reloptions.sql @@ -55,7 +55,7 @@ ALTER TABLE reloptions_test RESET (fillfactor=12); -- Test vacuum_truncate option DROP TABLE reloptions_test; -CREATE TABLE reloptions_test(i INT NOT NULL, j text) +CREATE TEMP TABLE reloptions_test(i INT NOT NULL, j text) WITH (vacuum_truncate=false, toast.vacuum_truncate=false, autovacuum_enabled=false);