aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsvc <svc@yandex-team.ru>2022-04-18 18:40:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-04-18 18:40:19 +0300
commitf726434f721abdb4097e50dfa280a5396bbaec51 (patch)
treee12d93e35122f936c3ce5f7935eafb8aa7a36137
parent10b7298d75e2da1ce3c8abdbfe76b57b15eefb0d (diff)
downloadydb-f726434f721abdb4097e50dfa280a5396bbaec51.tar.gz
KIKIMR-14636 write more data in order to trigger split
REVIEW: 2437567 x-ydb-stable-ref: d941f4937989aa9e44de8ab0e6990dbf81fcdde6
-rw-r--r--ydb/services/ydb/ydb_table_split_ut.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ydb/services/ydb/ydb_table_split_ut.cpp b/ydb/services/ydb/ydb_table_split_ut.cpp
index 401cc36dd2..bd05c8d217 100644
--- a/ydb/services/ydb/ydb_table_split_ut.cpp
+++ b/ydb/services/ydb/ydb_table_split_ut.cpp
@@ -506,7 +506,7 @@ Y_UNIT_TEST_SUITE(YdbTableSplit) {
{ // add data for triger split
int key = 0;
- for (int i = 0 ; i < 100; ++i) {
+ for (int i = 0 ; i < 310; ++i) {
TValueBuilder rows;
rows.BeginList();
for (int j = 0; j < 500; ++j) {
@@ -551,7 +551,6 @@ Y_UNIT_TEST_SUITE(YdbTableSplit) {
} while (partitions == 1);
-
{ // fail if shema has been broken
TString readQuery =
"SELECT * FROM `/Root/Bar`;";