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
$input = (
SELECT Key, Value1
FROM `Left` WHERE Value2 == "Value1"
);
SELECT t1.Key AS Key, t2.Value AS Value
FROM $input AS t1
INNER JOIN `Right` AS t2
ON t1.Value1 = t2.Key AND t1.Key = t2.Key
ORDER BY Key, Value
ut: KqpNewEngine.JoinIdxLookupWithPredicate
sql:
AST with enabled flag:
AST with disabled flag:
Stream join doesn't support such join condition
ON t1.Value1 = t2.Key AND t1.Key = t2.Key
The text was updated successfully, but these errors were encountered: