We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eafb11a commit dcfc568Copy full SHA for dcfc568
ydb/core/sys_view/ut_kqp.cpp
@@ -1422,14 +1422,13 @@ Y_UNIT_TEST_SUITE(SystemView) {
1422
Cerr << "... SELECT from follower" << Endl;
1423
{
1424
auto result = session.ExecuteDataQuery(R"(
1425
- SELECT * FROM `Root/Tenant1/Table1` WHERE Key >= 2;
+ SELECT * FROM `Root/Tenant1/Table1` WHERE Key = 2;
1426
)", TTxControl::BeginTx(TTxSettings::StaleRO()).CommitTx()).ExtractValueSync();
1427
NKqp::AssertSuccessResult(result);
1428
1429
TString actual = FormatResultSetYson(result.GetResultSet(0));
1430
NKqp::CompareYson(R"([
1431
- [[2u]];
1432
- [[3u]]
+ [[2u]]
1433
])", actual);
1434
}
1435
0 commit comments