wForget commented on issue #7777:
URL: 
https://github.com/apache/incubator-gluten/issues/7777#issuecomment-2454200011

   It seems that `SINGLE QUOTES` is also not allowed.
   
   ```
   select get_json_object('{\'c1\':\'test test\'}', '$.c1');
   ```
   
   gluten disabled:
   
   ```
   +--------------------------------------------+--+
   | get_json_object({'c1':'test test'}, $.c1)  |
   +--------------------------------------------+--+
   | test test                                  |
   +--------------------------------------------+--+
   ```
   
   gluten enabled:
   
   ```
   +--------------------------------------------+--+
   | get_json_object({'c1':'test test'}, $.c1)  |
   +--------------------------------------------+--+
   | NULL                                       |
   +--------------------------------------------+--+
   ```


-- 
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