Skip to content

Commit ab1e5ff

Browse files
committed
Enable tests.
1 parent a9ddf8d commit ab1e5ff

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

ydb/core/kqp/ut/olap/kqp_olap_ut.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -4922,9 +4922,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
49224922
}
49234923

49244924
Y_UNIT_TEST(Json_GetValue) {
4925-
// Should be fixed after Arrow kernel implementation for JSON_VALUE
4926-
// https://st.yandex-team.ru/KIKIMR-17903
4927-
return;
49284925
TAggregationTestCase testCase;
49294926
testCase.SetQuery(R"(
49304927
SELECT id, JSON_VALUE(jsonval, "$.col1"), JSON_VALUE(jsondoc, "$.col1") FROM `/Root/tableWithNulls`
@@ -4941,9 +4938,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
49414938
}
49424939

49434940
Y_UNIT_TEST(Json_GetValue_ToString) {
4944-
// Should be fixed after Arrow kernel implementation for JSON_VALUE
4945-
// https://st.yandex-team.ru/KIKIMR-17903
4946-
return;
49474941
TAggregationTestCase testCase;
49484942
testCase.SetQuery(R"(
49494943
SELECT id, JSON_VALUE(jsonval, "$.col1" RETURNING String), JSON_VALUE(jsondoc, "$.col1") FROM `/Root/tableWithNulls`
@@ -4960,9 +4954,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
49604954
}
49614955

49624956
Y_UNIT_TEST(Json_GetValue_ToInt) {
4963-
// Should be fixed after Arrow kernel implementation for JSON_VALUE
4964-
// https://st.yandex-team.ru/KIKIMR-17903
4965-
return;
49664957
TAggregationTestCase testCase;
49674958
testCase.SetQuery(R"(
49684959
SELECT id, JSON_VALUE(jsonval, "$.obj.obj_col2_int" RETURNING Int), JSON_VALUE(jsondoc, "$.obj.obj_col2_int" RETURNING Int) FROM `/Root/tableWithNulls`
@@ -5027,9 +5018,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
50275018
}
50285019

50295020
Y_UNIT_TEST(Json_Exists) {
5030-
// Should be fixed after Arrow kernel implementation for JSON_EXISTS
5031-
// https://st.yandex-team.ru/KIKIMR-17903
5032-
return;
50335021
TAggregationTestCase testCase;
50345022
testCase.SetQuery(R"(
50355023
SELECT id, JSON_EXISTS(jsonval, "$.col1"), JSON_EXISTS(jsondoc, "$.col1") FROM `/Root/tableWithNulls`

0 commit comments

Comments
 (0)