ankitsultana opened a new pull request, #9374:
URL: https://github.com/apache/pinot/pull/9374
Related to #9345
Queries with a single IN clause argument is different from a query with
multiple arguments in the IN clause. This PR adds support for the former. Will
raise another PR soon for the multi-arg case (that PR will be a bit longer so I
decoupled these)
Query to verify:
```
SELECT a.playerID, a.runs, a.yearID, b.runs, b.yearID
FROM baseballStats_OFFLINE AS a JOIN baseballStats_OFFLINE AS b ON
a.playerID = b.playerID
WHERE a.runs > 160 AND b.teamID IN ('SFN')
```
cc: @walterddr
--
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]