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

Fix a broken assert() in where.c.

FossilOrigin-Name: 090b29177fbc9faa83b560d92ddc3710d291776e
This commit is contained in:
dan
2011-07-02 06:44:05 +00:00
parent bac8158a85
commit 94e08d92f9
4 changed files with 16 additions and 11 deletions

View File

@ -156,6 +156,9 @@ foreach {tn sql temptables res} {
do_temptables_test 2.$tn.2 "SELECT DISTINCT $sql" $temptables
}
do_execsql_test 2.A {
SELECT (SELECT DISTINCT o.a FROM t1 AS i) FROM t1 AS o;
} {a A a A}