From 3adbbdcdcb4438c99bc24780ee27887b06bb4122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96nder=20Kalac=C4=B1?= Date: Fri, 12 May 2017 15:46:38 +0300 Subject: [PATCH] Fix typo in the regression test (#1410) --- .../isolation_copy_placement_vs_modification.out | 12 ++++++------ .../isolation_copy_placement_vs_modification.spec | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/test/regress/expected/isolation_copy_placement_vs_modification.out b/src/test/regress/expected/isolation_copy_placement_vs_modification.out index 16aee3e54..9ddc24976 100644 --- a/src/test/regress/expected/isolation_copy_placement_vs_modification.out +++ b/src/test/regress/expected/isolation_copy_placement_vs_modification.out @@ -82,7 +82,7 @@ master_copy_shard_placement step s1-delete: - UPDATE test_table SET y = 5 WHERE x = 5; + DELETE FROM test_table WHERE x = 5; step s2-commit: COMMIT; @@ -103,8 +103,8 @@ step s2-print-content: nodeport success result -57637 t 5 -57638 t 5 +57637 t +57638 t starting permutation: s1-load-cache s1-begin s1-select s2-set-placement-inactive s2-begin s2-repair-placement s1-insert s2-commit s1-commit s2-print-content step s1-load-cache: @@ -332,7 +332,7 @@ master_copy_shard_placement step s1-delete: - UPDATE test_table SET y = 5 WHERE x = 5; + DELETE FROM test_table WHERE x = 5; step s2-commit: COMMIT; @@ -353,8 +353,8 @@ step s2-print-content: nodeport success result -57637 t 5 -57638 t 5 +57637 t +57638 t starting permutation: s1-begin s1-select s2-set-placement-inactive s2-begin s2-repair-placement s1-insert s2-commit s1-commit s2-print-content step s1-begin: diff --git a/src/test/regress/specs/isolation_copy_placement_vs_modification.spec b/src/test/regress/specs/isolation_copy_placement_vs_modification.spec index 7195e024c..72eef047a 100644 --- a/src/test/regress/specs/isolation_copy_placement_vs_modification.spec +++ b/src/test/regress/specs/isolation_copy_placement_vs_modification.spec @@ -42,7 +42,7 @@ step "s1-update" step "s1-delete" { - UPDATE test_table SET y = 5 WHERE x = 5; + DELETE FROM test_table WHERE x = 5; } step "s1-select"