diff options
author | Igor Makunin <igor.makunin@gmail.com> | 2022-02-08 11:37:43 +0300 |
---|---|---|
committer | Igor Makunin <igor.makunin@gmail.com> | 2022-02-08 11:37:43 +0300 |
commit | d52cc2d3fa647ac37833ec9952b58acd9ac04ab6 (patch) | |
tree | 2013384581e342a0a7026ceec15a464b513ca6bf | |
parent | 6a99be484670d42ac92362906cd2fdf2f670fc88 (diff) | |
download | ydb-d52cc2d3fa647ac37833ec9952b58acd9ac04ab6.tar.gz |
KIKIMR-10757: fix test
ref:785d9d212bd8cdfab5ab2e137f80dcc14c84c9bc
-rw-r--r-- | ydb/core/tx/datashard/datashard_ut_order.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/datashard/datashard_ut_order.cpp b/ydb/core/tx/datashard/datashard_ut_order.cpp index 9cd7a66717..4a63ae1882 100644 --- a/ydb/core/tx/datashard/datashard_ut_order.cpp +++ b/ydb/core/tx/datashard/datashard_ut_order.cpp @@ -3266,7 +3266,7 @@ Y_UNIT_TEST(TestReadTableWriteConflict) { // Send a commit request, it would block on readset exchange auto senderCommit = runtime.AllocateEdgeActor(); SendRequest(runtime, senderCommit, MakeCommitRequest(sessionId, txId, - "UPDATE [/Root/table-1] ON (key, value) VALUES (3, 2); " + "UPSERT INTO [/Root/table-1] (key, value) VALUES (3, 2); " "UPSERT INTO [/Root/table-2] (key, value) VALUES (4, 2)")); // Wait until we captured all readsets |