lyy-pineapple opened a new issue, #10159:
URL: https://github.com/apache/incubator-gluten/issues/10159

   ### Backend
   
   VL (Velox)
   
   ### Bug description
   
   Currently, Gluten translates json_tuple(a, key) directly into 
get_json_object(a, key). This causes issues when the key contains a dot (.), 
leading to incorrect parsing behavior.
   
   Details:
   For example, if a = '{"a.b":"a"}', then:
   
   json_tuple(a, 'a.b') correctly returns "a"
   
   But the translated expression get_json_object(a, '$.a.b') treats the key as 
a nested path, looking for a field b under a, which results in null
   
   ### Gluten version
   
   main branch
   
   ### Spark version
   
   None
   
   ### Spark configurations
   
   _No response_
   
   ### System information
   
   _No response_
   
   ### Relevant logs
   
   ```bash
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to