1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

New test case for check-in [74ef97bf51dd531a] that takes the fix in the

previous check-in into account.

FossilOrigin-Name: cb1d06521de5918a2324a41e207b48c5e5149c23b927b9e3e1f3c3b38b82658e
This commit is contained in:
drh
2019-05-22 23:12:10 +00:00
parent 59145813d2
commit 53e8709b75
3 changed files with 15 additions and 7 deletions

View File

@ -715,5 +715,13 @@ do_execsql_test view-26.0 {
1 1 2 2
1 1 3 3
}
do_execsql_test view-26.1 {
WITH v17(x,y) AS (SELECT max(a), min(b) FROM t16 GROUP BY c)
SELECT * FROM v17 AS one, v17 AS two WHERE one.x=1;
} {
1 1 1 1
1 1 2 2
1 1 3 3
}
finish_test