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:
@ -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
|
||||
|
Reference in New Issue
Block a user