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
What changes were proposed in this pull request?
(Please fill in changes proposed in this fix)
(Fixes: #3750#3808)
How was this patch tested?
TEST BY UT
(If this patch involves UI changes, please attach a screenshot; otherwise, remove this)
Backend
CH(ClickHouse)
Bug description
When parse a json string like
{"a":"b"}abde
, with the end is not '}', by spark, it can parse it as normal, but use gluten, it can not.The gluten result
+-----------------------------+
| get_json_object(name, $.a) |
+-----------------------------+
| NULL |
The spark query result
spark-sql> select get_json_object(name, '$.a') from test_tbl3 where id = 45;
b
Spark version
Spark-3.3.x
Spark configurations
No response
System information
No response
Relevant logs
No response
The text was updated successfully, but these errors were encountered: