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
Currently only a cross join is used, so clauses that use INNER JOIN or LEFT OUTER JOIN produce incorrect results.
WITH produce AS (select'lettuce'AS item UNION ALLSELECT'banana')
SELECT item, in_stock_items is not nullAS item_in_stock FROM produce
LEFT OUTER JOIN unnest(['lettuce']) in_stock_items ON in_stock_items = item;
item
item_in_stock
lettuce
true
banana
false
WITH produce AS (select'lettuce'AS item UNION ALLSELECT'banana')
SELECT item, in_stock_items is not nullAS item_in_stock FROM produce
INNER JOIN unnest(['lettuce']) in_stock_items ON in_stock_items = item;
item
item_in_stock
lettuce
true
The text was updated successfully, but these errors were encountered:
Currently only a cross join is used, so clauses that use
INNER JOIN
orLEFT OUTER JOIN
produce incorrect results.The text was updated successfully, but these errors were encountered: