]> granicus.if.org Git - postgresql/commitdiff
Minor fixes for reloptions tests
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 3 Mar 2018 17:50:51 +0000 (12:50 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 3 Mar 2018 17:51:56 +0000 (12:51 -0500)
Follow-up to 4b95cc1dc36c9d1971f757e9b519fcc442833f0e

Author: Nikolay Shaplov <dhyan@nataraj.su>

src/test/regress/expected/reloptions.out
src/test/regress/sql/reloptions.sql

index c4107d5ca1ae2cc7ec5595d18b9ee7d64d2f691f..df3c99d1eb14a2a31c93a84f0902d9c9f46e53d0 100644 (file)
@@ -77,7 +77,7 @@ SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
 ALTER TABLE reloptions_test RESET (autovacuum_enabled,
        autovacuum_analyze_scale_factor);
 SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass AND
-reloptions IS NULL;
+       reloptions IS NULL;
  reloptions 
 ------------
  
@@ -86,7 +86,7 @@ reloptions IS NULL;
 -- RESET fails if a value is specified
 ALTER TABLE reloptions_test RESET (fillfactor=12);
 ERROR:  RESET must not include values for parameters
--- The OIDS option is not stored
+-- The OIDS option is not stored as reloption
 DROP TABLE reloptions_test;
 CREATE TABLE reloptions_test(i INT) WITH (fillfactor=20, oids=true);
 SELECT reloptions, relhasoids FROM pg_class WHERE oid = 'reloptions_test'::regclass;
index c9119fd8634315efc3c2ba31088d99f73d9af668..37fbf41f7d5d70f1dea22ee14c5a701c52c1b034 100644 (file)
@@ -47,12 +47,12 @@ SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
 ALTER TABLE reloptions_test RESET (autovacuum_enabled,
        autovacuum_analyze_scale_factor);
 SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass AND
-reloptions IS NULL;
+       reloptions IS NULL;
 
 -- RESET fails if a value is specified
 ALTER TABLE reloptions_test RESET (fillfactor=12);
 
--- The OIDS option is not stored
+-- The OIDS option is not stored as reloption
 DROP TABLE reloptions_test;
 CREATE TABLE reloptions_test(i INT) WITH (fillfactor=20, oids=true);
 SELECT reloptions, relhasoids FROM pg_class WHERE oid = 'reloptions_test'::regclass;