]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix comment in test
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 2 Jan 2020 13:40:18 +0000 (14:40 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 2 Jan 2020 13:42:07 +0000 (14:42 +0100)
The comment was apparently copy-and-pasted and did not reflect the
actual test outcome.

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

index 6faa9d739de938315a5dfd997b45c280cf46f260..f49de68ee1eca040f80f9073101eebe817479dd1 100644 (file)
@@ -505,7 +505,7 @@ CREATE STATISTICS alt_stat1 ON a, b FROM alt_regress_1;
 CREATE STATISTICS alt_stat2 ON a, b FROM alt_regress_1;
 ALTER STATISTICS alt_stat1 RENAME TO alt_stat2;   -- failed (name conflict)
 ERROR:  statistics object "alt_stat2" already exists in schema "alt_nsp1"
-ALTER STATISTICS alt_stat1 RENAME TO alt_stat3;   -- failed (name conflict)
+ALTER STATISTICS alt_stat1 RENAME TO alt_stat3;   -- OK
 ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user2;  -- failed (no role membership)
 ERROR:  must be member of role "regress_alter_generic_user2"
 ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user3;  -- OK
index 84fd900b244e93188236f99cdf0c3a6b7f043d75..197fe4e8a548222c58085158d3ed4819e59061a8 100644 (file)
@@ -442,7 +442,7 @@ CREATE STATISTICS alt_stat1 ON a, b FROM alt_regress_1;
 CREATE STATISTICS alt_stat2 ON a, b FROM alt_regress_1;
 
 ALTER STATISTICS alt_stat1 RENAME TO alt_stat2;   -- failed (name conflict)
-ALTER STATISTICS alt_stat1 RENAME TO alt_stat3;   -- failed (name conflict)
+ALTER STATISTICS alt_stat1 RENAME TO alt_stat3;   -- OK
 ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user2;  -- failed (no role membership)
 ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user3;  -- OK
 ALTER STATISTICS alt_stat2 SET SCHEMA alt_nsp2;    -- OK