File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2084,17 +2084,17 @@ WHERE
20842084 },
20852085 },
20862086 },
2087- {
2087+ {
20882088 // https://github.com/dolthub/dolt/issues/9782
20892089 name : "joining with subquery on empty table" ,
20902090 setup : [][]string {
20912091 {
20922092 "CREATE TABLE t(c INT);" ,
20932093 "INSERT INTO t VALUES (1);" ,
2094- },
2095- },
2096- tests : []JoinOpTests {
2097- {
2094+ },
2095+ },
2096+ tests : []JoinOpTests {
2097+ {
20982098 Query : "SELECT t.c FROM t LEFT JOIN (SELECT t.c FROM t WHERE FALSE) AS subq ON TRUE;" ,
20992099 Expected : []sql.Row {{1 }},
21002100 },
@@ -2109,9 +2109,9 @@ WHERE
21092109 {
21102110 Query : "SELECT t.c FROM (SELECT t.c FROM t WHERE FALSE) AS subq NATURAL RIGHT JOIN t;" ,
21112111 Expected : []sql.Row {{1 }},
2112- },
2113- },
2114- },
2112+ },
2113+ },
2114+ },
21152115}
21162116
21172117var rangeJoinOpTests = []JoinOpTests {
You can’t perform that action at this time.
0 commit comments