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
physical_plan_error This feature is not implemented: Physical plan does not support logical expression OuterReferenceColumn(Field { name: "j1_id", data_type: Int32, nullable: true }, Column { relation: Some(Bare { table: "j1" }), name: "j1_id" })
4648
4648
4649
-
# 2 nested lateral join with the deepest join referencing the outer most relation
4650
-
query TT
4651
-
explain SELECT * FROM j1 j1_outer, LATERAL (
4652
-
SELECT * FROM j1 j1_inner, LATERAL (
4653
-
SELECT * FROM j2 WHERE j1_inner.j1_id = j2_id and j1_outer.j1_id=j2_id
physical_plan_error This feature is not implemented: Physical plan does not support logical expression OuterReferenceColumn(Field { name: "j1_id", data_type: Int32, nullable: true }, Column { relation: Some(Bare { table: "j1_inner" }), name: "j1_id" })
4671
-
4672
4649
query TT
4673
4650
explain SELECT * FROM j1, LATERAL (SELECT 1) AS j2;
0 commit comments