Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: third_party/sqlite/icu-regexp.patch

Issue 5626002: Update sqlite to 3.7.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/third_party/sqlite/src
Patch Set: Update version in doc. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 This is a backport of upstream fix http://www.sqlite.org/src/ci/c34cf23efb,
2 which was released in SQLite 3.6.22.
3 ===============================================================================
4 --- ext/icu/icu.c.orig 2010-07-30 13:40:12.000000000 -0700
5 +++ ext/icu/icu.c 2010-07-30 13:40:31.000000000 -0700
6 @@ -459,7 +459,7 @@
7 void *pContext; /* sqlite3_user_data() context */
8 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
9 } scalars[] = {
10 - {"regexp",-1, SQLITE_ANY, 0, icuRegexpFunc},
11 + {"regexp", 2, SQLITE_ANY, 0, icuRegexpFunc},
12
13 {"lower", 1, SQLITE_UTF16, 0, icuCaseFunc16},
14 {"lower", 2, SQLITE_UTF16, 0, icuCaseFunc16},
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698