@@ -4922,9 +4922,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
4922
4922
}
4923
4923
4924
4924
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 ;
4928
4925
TAggregationTestCase testCase;
4929
4926
testCase.SetQuery (R"(
4930
4927
SELECT id, JSON_VALUE(jsonval, "$.col1"), JSON_VALUE(jsondoc, "$.col1") FROM `/Root/tableWithNulls`
@@ -4941,9 +4938,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
4941
4938
}
4942
4939
4943
4940
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 ;
4947
4941
TAggregationTestCase testCase;
4948
4942
testCase.SetQuery (R"(
4949
4943
SELECT id, JSON_VALUE(jsonval, "$.col1" RETURNING String), JSON_VALUE(jsondoc, "$.col1") FROM `/Root/tableWithNulls`
@@ -4960,9 +4954,6 @@ Y_UNIT_TEST_SUITE(KqpOlap) {
4960
4954
}
4961
4955
4962
4956
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 ;
4966
4957
TAggregationTestCase testCase;
4967
4958
testCase.SetQuery (R"(
4968
4959
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) {
5027
5018
}
5028
5019
5029
5020
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 ;
5033
5021
TAggregationTestCase testCase;
5034
5022
testCase.SetQuery (R"(
5035
5023
SELECT id, JSON_EXISTS(jsonval, "$.col1"), JSON_EXISTS(jsondoc, "$.col1") FROM `/Root/tableWithNulls`
0 commit comments