File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ ALTER TABLE reloptions_test RESET (fillfactor=12);
89
89
ERROR: RESET must not include values for parameters
90
90
-- Test vacuum_truncate option
91
91
DROP TABLE reloptions_test;
92
- CREATE TABLE reloptions_test(i INT NOT NULL, j text)
92
+ CREATE TEMP TABLE reloptions_test(i INT NOT NULL, j text)
93
93
WITH (vacuum_truncate=false,
94
94
toast.vacuum_truncate=false,
95
95
autovacuum_enabled=false);
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ ALTER TABLE reloptions_test RESET (fillfactor=12);
55
55
-- Test vacuum_truncate option
56
56
DROP TABLE reloptions_test;
57
57
58
- CREATE TABLE reloptions_test (i INT NOT NULL , j text )
58
+ CREATE TEMP TABLE reloptions_test(i INT NOT NULL , j text )
59
59
WITH (vacuum_truncate= false,
60
60
toast .vacuum_truncate = false,
61
61
autovacuum_enabled= false);
You can’t perform that action at this time.
0 commit comments