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

Fix test file vtabH.test so that it works with SQLITE_ENABLE_ICU builds.

FossilOrigin-Name: 19c1f4483e3df7fa1e9ac7c8a510fa1c906ac7c7
This commit is contained in:
dan
2016-01-08 08:35:14 +00:00
parent c9d6d1b67b
commit 33d09da1f8
3 changed files with 11 additions and 11 deletions

View File

@ -68,19 +68,19 @@ set x7 backbone
set x8 backarrow
set x9 castle
db func glob gfunc
db func glob -argcount 2 gfunc
proc gfunc {a b} {
incr ::gfunc
return 1
}
db func like lfunc
db func like -argcount 2 lfunc
proc lfunc {a b} {
incr ::gfunc 100
return 1
}
db func regexp rfunc
db func regexp -argcount 2 rfunc
proc rfunc {a b} {
incr ::gfunc 10000
return 1