diff options
author | dcherednik <dcherednik@ydb.tech> | 2023-01-13 15:55:36 +0300 |
---|---|---|
committer | dcherednik <dcherednik@ydb.tech> | 2023-01-13 15:55:36 +0300 |
commit | 828dbe3e19abe983f901e2df299e498314817e89 (patch) | |
tree | bfe116b5df6678665d89a5995334b927ce69e678 | |
parent | 42ccd4f178dcbeec66bf9aba54383f9465ab6838 (diff) | |
download | ydb-828dbe3e19abe983f901e2df299e498314817e89.tar.gz |
Sort result for multishard table.
-rw-r--r-- | ydb/core/kqp/ut/service/kqp_query_service_ut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/ut/service/kqp_query_service_ut.cpp b/ydb/core/kqp/ut/service/kqp_query_service_ut.cpp index 50de1d25b3..4af5cc1863 100644 --- a/ydb/core/kqp/ut/service/kqp_query_service_ut.cpp +++ b/ydb/core/kqp/ut/service/kqp_query_service_ut.cpp @@ -76,7 +76,7 @@ Y_UNIT_TEST_SUITE(KqpQueryService) { auto db = kikimr.GetQueryClient(); auto result = db.ExecuteQuery(R"( - SELECT Key, Value2 FROM TwoShard WHERE Value2 > 0; + SELECT Key, Value2 FROM TwoShard WHERE Value2 > 0 ORDER BY Key; )").ExtractValueSync(); UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); |