mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-01 06:27:03 +03:00
Omit the omit flag from eq constraints on column "aggregate" of dbstat virtual tables. Fix for [727074e2].
FossilOrigin-Name: 74ef6f2b6d9f50ff1d455e2263ba77707c1e8394b25b3f8a3a2a7b6e7f2c481e
This commit is contained in:
@ -298,4 +298,14 @@ do_catchsql_test 7.2.4 {
|
||||
SELECT * FROM x3;
|
||||
} {1 {unrecognized token: "123corp"}}
|
||||
|
||||
do_execsql_test 8.1 {
|
||||
CREATE VIRTUAL TABLE st4 USING dbstat;
|
||||
}
|
||||
do_execsql_test 8.2 {
|
||||
SELECT * FROM st4 WHERE st4.aggregate = NULL
|
||||
}
|
||||
do_execsql_test 8.3 {
|
||||
SELECT aggregate=1 FROM st4 WHERE aggregate = 5
|
||||
}
|
||||
|
||||
finish_test
|
||||
|
Reference in New Issue
Block a user