wang-zhun commented on issue #5253:
URL: 
https://github.com/apache/incubator-gluten/issues/5253#issuecomment-2251845672

   @NEUpanning Is the issue I'm experiencing the same as this one
   ```
   with tb as (
   select
       concat('{"a": "2", "b": "', string (unhex(id)), '"}') as js,
       string(unhex(id)) as st,
       id as ascii_num
   FROM range(0, 255, 1, 10)
   )
   select 'gluten', ascii_num,st,get_json_object(js,  '$.a') from (select /*+ 
repartition(2) */ * from tb)
   union all 
   select 'vanilla', ascii_num,st,get_json_object(js,  '$.a')  from tb
   ```


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