kecookier opened a new issue, #4930:
URL: https://github.com/apache/incubator-gluten/issues/4930
### Backend
VL (Velox)
### Bug description
The following SQL might lead to wrong results, but it's not yet certain if
there are other factors involved.
I will try to reproduce later.
```
SELECT deal_id,
spu_id
FROM tableA a LATERAL VIEW
explode(split(regexp_replace(spu_list, '\\[|\\]',''),",")) tmp_table AS spu_id
)a
LEFT JOIN (
SELECT cast(spu_id AS bigint) AS spu_id
FROM tableB
)b
ON a.spu_id = b.spu_id
```
### Spark version
None
### Spark configurations
_No response_
### System information
_No response_
### Relevant logs
_No response_
--
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]