Skip to content

Commit 99902bc

Browse files
committed
Remove test from joins.slt
1 parent 5762e55 commit 99902bc

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

datafusion/sqllogictest/test_files/joins.slt

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4646,29 +4646,6 @@ logical_plan
46464646
08)----------TableScan: j3 projection=[j3_string, j3_id]
46474647
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" })
46484648

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
4654-
) as j2
4655-
) as j2;
4656-
----
4657-
logical_plan
4658-
01)Cross Join:
4659-
02)--SubqueryAlias: j1_outer
4660-
03)----TableScan: j1 projection=[j1_string, j1_id]
4661-
04)--SubqueryAlias: j2
4662-
05)----Subquery:
4663-
06)------Cross Join:
4664-
07)--------SubqueryAlias: j1_inner
4665-
08)----------TableScan: j1 projection=[j1_string, j1_id]
4666-
09)--------SubqueryAlias: j2
4667-
10)----------Subquery:
4668-
11)------------Filter: outer_ref(j1_inner.j1_id) = j2.j2_id AND outer_ref(j1_outer.j1_id) = j2.j2_id
4669-
12)--------------TableScan: j2 projection=[j2_string, j2_id]
4670-
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-
46724649
query TT
46734650
explain SELECT * FROM j1, LATERAL (SELECT 1) AS j2;
46744651
----

0 commit comments

Comments
 (0)