aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlnaz Nizametdinov <ilnaz@ydb.tech>2025-05-30 12:59:50 +0300
committerGitHub <noreply@github.com>2025-05-30 12:59:50 +0300
commiteb36b7e30877ed5668502297cb6ff750d50d75c3 (patch)
treee867ccfe0320f78d82c895fe69b8b47b7bf477e5
parentcde1dc253a0f9d5f7f11bfe9adb826e4748adf1c (diff)
downloadydb-eb36b7e30877ed5668502297cb6ff750d50d75c3.tar.gz
Cosmetic changes (#19005)
-rw-r--r--ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
index 707052da387..a68c02e1311 100644
--- a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
+++ b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
@@ -31,11 +31,12 @@ Y_UNIT_TEST_SUITE(TAsyncIndexTests) {
)");
env.TestWaitNotification(runtime, txId);
- TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"),
- {NLs::PathExist,
- NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
- NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
- NLs::IndexKeys({"indexed"})});
+ TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"),{
+ NLs::PathExist,
+ NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
+ NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
+ NLs::IndexKeys({"indexed"}),
+ });
}
Y_UNIT_TEST(OnlineBuild) {
@@ -525,10 +526,10 @@ Y_UNIT_TEST_SUITE(TAsyncIndexTests) {
env.TestWaitNotification(runtime, txId);
TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"), {
- NLs::PathExist,
- NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
- NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
- NLs::IndexKeys({"indexed"}),
+ NLs::PathExist,
+ NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
+ NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
+ NLs::IndexKeys({"indexed"}),
});
}
}