]> granicus.if.org Git - postgresql/commitdiff
Remove bogus step from test_decoding isolation tests.
authorRobert Haas <rhaas@postgresql.org>
Sat, 15 Aug 2015 02:39:09 +0000 (22:39 -0400)
committerRobert Haas <rhaas@postgresql.org>
Sat, 15 Aug 2015 02:40:55 +0000 (22:40 -0400)
Commit 43b4a16817c8b5568cec72f3b0e1c8209f5ac7f7 made the isolation
tester reject duplicate step names, and it turns out that the
test_decoding module's concurrent_ddl_dml isolation test has a
duplicate name.  I think the second definition isn't actually getting
used, so just remove it.

Per buildfarm.

contrib/test_decoding/specs/concurrent_ddl_dml.spec

index 8cc5fa42ee18255bcc9d2d79c15b934b0a6e9291..3191826451a2c41832b9a8b66df90eee0b5fcfce 100644 (file)
@@ -38,7 +38,6 @@ step "s2_alter_tbl2_float" { ALTER TABLE tbl2 ALTER COLUMN val2 TYPE float; }
 step "s2_alter_tbl2_char" { ALTER TABLE tbl2 ALTER COLUMN val2 TYPE character varying; }
 step "s2_alter_tbl2_text" { ALTER TABLE tbl2 ALTER COLUMN val2 TYPE text; }
 step "s2_alter_tbl2_boolean" { ALTER TABLE tbl2 ALTER COLUMN val2 TYPE boolean; }
-step "s2_alter_tbl2_text" { ALTER TABLE tbl2 ALTER COLUMN val2 TYPE boolean; }
 
 step "s2_alter_tbl2_add_int" { ALTER TABLE tbl2 ADD COLUMN val3 INTEGER; }
 step "s2_alter_tbl2_add_float" { ALTER TABLE tbl2 ADD COLUMN val3 FLOAT; }