You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #6409 looks to add support for the IN operator for pull queries. Push queries should always be a super set of pull queries, hence push queries needs to support IN.
The text was updated successfully, but these errors were encountered:
* feat: support `IN` operator for non-pull queries
fixes: #6473
Adds support for `IN` operator for push and persistent queries.
Co-authored-by: Andy Coates <[email protected]>
Co-authored-by: Jim Galasyn <[email protected]>
e.g.
WHERE ID IN (1, 2, 3)
.See https://www.w3schools.com/sql/sql_in.asp
PR #6409 looks to add support for the
IN
operator for pull queries. Push queries should always be a super set of pull queries, hence push queries needs to supportIN
.The text was updated successfully, but these errors were encountered: