lgbo-ustc commented on issue #8406: URL: https://github.com/apache/incubator-gluten/issues/8406#issuecomment-2568613095
We compare the two methods as following ```sql select count(x) from (select from_json(s, 'Map<String, String>')['key2'] as x from test_map_json); ```  ```sql select count(x) from (select get_json_object(s, '$.key2') as x from test_map_json); ```  -- 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]
