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
We should also support this with (uncorrelated) subqueries:
root@:26257/> SELECT 3 = ALL (SELECT 3);
pq: unsupported comparison operator: 3 = ALL (SELECT 3): op ALL array requires array on right side
root@:26257/> SELECT 3 = ANY (SELECT 3);
pq: unsupported comparison operator: 3 = ANY (SELECT 3): op ANY array requires array on right side
We currently support
ANY
andALL
with ARRAYs:We should also support this with (uncorrelated) subqueries:
cc @knz @nvanbenschoten
The text was updated successfully, but these errors were encountered: