Skip to content

Commit 56c0c62

Browse files
Subham SinghalSubham Singhal
authored andcommitted
Fix UT
1 parent bd0564c commit 56c0c62

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

datafusion/sqllogictest/test_files/subquery.slt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -689,10 +689,8 @@ query TT
689689
explain SELECT t1_id, (SELECT t2_id FROM t2 limit 0) FROM t1
690690
----
691691
logical_plan
692-
01)Projection: t1.t1_id, __scalar_sq_1.t2_id AS t2_id
693-
02)--Left Join:
694-
03)----TableScan: t1 projection=[t1_id]
695-
04)----EmptyRelation: rows=0
692+
01)Projection: t1.t1_id, Int32(NULL) AS t2_id
693+
02)--TableScan: t1 projection=[t1_id]
696694

697695
query II rowsort
698696
SELECT t1_id, (SELECT t2_id FROM t2 limit 0) FROM t1

0 commit comments

Comments
 (0)