1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

New test cases, one of which is failing, indicating a bug that needs fixing.

FossilOrigin-Name: bd5fd68435ff068c18d7d46b33cf7591263a03c32a917a7df7c087b08c573cc8
This commit is contained in:
drh
2022-04-16 23:38:29 +00:00
parent 052953a4e6
commit 6fda176ba6
5 changed files with 180 additions and 38 deletions

View File

@ -78,10 +78,10 @@ ifcapable subquery {
} {1 11 111 1111 2 22 {} {} 3 33 {} {}}
do_test join2-1.7-rj {
execsql {
SELECT * FROM
(t2 NATURAL JOIN t3) NATURAL RIGHT JOIN t1
SELECT a, b, c, d FROM
t2 NATURAL JOIN t3 NATURAL RIGHT JOIN t1
}
} {11 111 1111 1 {} {} {} 2 {} {} {} 3}
} {1 11 111 1111 2 22 {} {} 3 33 {} {}}
}
#-------------------------------------------------------------------------