File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
7777ALTER TABLE reloptions_test RESET (autovacuum_enabled,
7878 autovacuum_analyze_scale_factor);
7979SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass AND
80- reloptions IS NULL;
80+ reloptions IS NULL;
8181 reloptions
8282------------
8383
@@ -86,7 +86,7 @@ reloptions IS NULL;
8686-- RESET fails if a value is specified
8787ALTER TABLE reloptions_test RESET (fillfactor=12);
8888ERROR: RESET must not include values for parameters
89- -- The OIDS option is not stored
89+ -- The OIDS option is not stored as reloption
9090DROP TABLE reloptions_test;
9191CREATE TABLE reloptions_test(i INT) WITH (fillfactor=20, oids=true);
9292SELECT reloptions, relhasoids FROM pg_class WHERE oid = 'reloptions_test'::regclass;
Original file line number Diff line number Diff line change @@ -47,12 +47,12 @@ SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
4747ALTER TABLE reloptions_test RESET (autovacuum_enabled,
4848 autovacuum_analyze_scale_factor);
4949SELECT reloptions FROM pg_class WHERE oid = ' reloptions_test' ::regclass AND
50- reloptions IS NULL ;
50+ reloptions IS NULL ;
5151
5252-- RESET fails if a value is specified
5353ALTER TABLE reloptions_test RESET (fillfactor= 12 );
5454
55- -- The OIDS option is not stored
55+ -- The OIDS option is not stored as reloption
5656DROP TABLE reloptions_test;
5757CREATE TABLE reloptions_test (i INT ) WITH (fillfactor= 20 , oids= true);
5858SELECT reloptions, relhasoids FROM pg_class WHERE oid = ' reloptions_test' ::regclass;
You can’t perform that action at this time.
0 commit comments