You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case simdjson::fallback::ondemand::json_type::array:
201
-
case simdjson::fallback::ondemand::json_type::object: {
200
+
case simdjson::builtin::ondemand::json_type::array:
201
+
case simdjson::builtin::ondemand::json_type::object: {
202
202
constauto rawJson = jsonValue.raw_json().value();
203
203
if (Y_UNLIKELY(dataSlot != NYql::NUdf::EDataSlot::Json)) {
204
204
throwyexception() << "found unexpected nested value (raw: '" << TruncateString(rawJson) << "'), expected data type " <<typeInfo.Name << ", please use Json type for nested values";
@@ -211,15 +211,15 @@ class TColumnParser {
211
211
break;
212
212
}
213
213
214
-
case simdjson::fallback::ondemand::json_type::boolean: {
214
+
case simdjson::builtin::ondemand::json_type::boolean: {
215
215
if (Y_UNLIKELY(dataSlot != NYql::NUdf::EDataSlot::Bool)) {
216
216
throwyexception() << "found unexpected bool value, expected data type " << typeInfo.Name;
0 commit comments