1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Omit tests of the LIKE optimization in like3.test when SQLITE_ENABLE_ICU is defined.

FossilOrigin-Name: af53c41a127c314c0608f3fd016d3a26896783745e46cd180976a188400cdb75
This commit is contained in:
dan
2019-04-26 17:08:50 +00:00
parent dbdd93b7e1
commit db5ba5c385
3 changed files with 10 additions and 8 deletions

View File

@ -182,6 +182,7 @@ do_eqp_test like3-5.211 {
# Verify that the LIKE optimization works with an ESCAPE clause when
# using PRAGMA case_sensitive_like=ON.
#
ifcapable !icu {
do_execsql_test like3-6.100 {
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(path TEXT COLLATE nocase PRIMARY KEY,a,b,c) WITHOUT ROWID;
@ -229,5 +230,6 @@ do_eqp_test like3-6.240 {
QUERY PLAN
`--SEARCH TABLE t2 USING INDEX t2path2 (path>? AND path<?)
}
}
finish_test