diff options
author | Robert Haas | 2015-08-15 02:39:09 +0000 |
---|---|---|
committer | Robert Haas | 2015-08-15 02:40:55 +0000 |
commit | 5243a35825cf32db5863459be1f3afcc6b6461e0 (patch) | |
tree | 113cd9737c79124d898d07b121893281fd424f03 | |
parent | 43b4a16817c8b5568cec72f3b0e1c8209f5ac7f7 (diff) |
Remove bogus step from test_decoding isolation tests.
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.
-rw-r--r-- | contrib/test_decoding/specs/concurrent_ddl_dml.spec | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/test_decoding/specs/concurrent_ddl_dml.spec b/contrib/test_decoding/specs/concurrent_ddl_dml.spec index 8cc5fa42ee..3191826451 100644 --- a/contrib/test_decoding/specs/concurrent_ddl_dml.spec +++ b/contrib/test_decoding/specs/concurrent_ddl_dml.spec @@ -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; } |