diff options
author | drh <> | 2022-04-11 18:54:23 +0000 |
---|---|---|
committer | drh <> | 2022-04-11 18:54:23 +0000 |
commit | ec27077c4f1dc2753ab3f26be7024c3b8af5491c (patch) | |
tree | 8cef10c0141f843a74f2a31d3800970e2262f338 /test/btree01.test | |
parent | 6134b2dff2d5df510210880f935bbd2b0a08f93c (diff) | |
download | sqlite-ec27077c4f1dc2753ab3f26be7024c3b8af5491c.tar.gz sqlite-ec27077c4f1dc2753ab3f26be7024c3b8af5491c.zip |
New test cases added.
FossilOrigin-Name: bdd1499c0fa4f8aadf4857a0ccc0d839c250369f29766ebef80330964905e63b
Diffstat (limited to 'test/btree01.test')
-rw-r--r-- | test/btree01.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/btree01.test b/test/btree01.test index 9c309760d..6e4717ae6 100644 --- a/test/btree01.test +++ b/test/btree01.test @@ -148,6 +148,9 @@ do_execsql_test btree01-2.1 { INSERT INTO t2(y) VALUES(198),(187),(100); SELECT y, c FROM t2 LEFT JOIN t1 ON y=a ORDER BY x; } {198 99 187 {} 100 50} +do_execsql_test btree01-2.2 { + SELECT y, c FROM t1 RIGHT JOIN t2 ON y=a ORDER BY x; +} {198 99 187 {} 100 50} finish_test |