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::builtin::ondemand::json_type::array:
201
205
case simdjson::builtin::ondemand::json_type::object: {
202
-
constauto rawJson = jsonValue.raw_json().value();
203
-
if (Y_UNLIKELY(dataSlot != NYql::NUdf::EDataSlot::Json)) {
204
-
throwyexception() << "found unexpected nested value (raw: '" << TruncateString(rawJson) << "'), expected data type " <<typeInfo.Name << ", please use Json type for nested values";
205
-
}
206
-
if (Y_UNLIKELY(!NYql::NDom::IsValidJson(rawJson))) {
throwyexception() << "found unexpected nested value (raw: '" << TruncateString(jsonValue.raw_json().value()) << "'), expected data type " <<typeInfo.Name << ", please use Json type for nested values";
212
207
}
213
208
214
209
case simdjson::builtin::ondemand::json_type::boolean: {
0 commit comments