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

Unified Diff: third_party/sqlite/sqlite-src-3070603/src/build.c

Issue 826543003: [sql] Import reference version of SQLite 3.7.6.3. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: gitignore forgot some files for me. Created 5 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3070603/src/build.c
diff --git a/third_party/sqlite/src/src/build.c b/third_party/sqlite/sqlite-src-3070603/src/build.c
similarity index 99%
copy from third_party/sqlite/src/src/build.c
copy to third_party/sqlite/sqlite-src-3070603/src/build.c
index 25a74ca7ed250873d1e31614772656bba0d06938..83a1db8400c9131e3b95fce4334210f259aa264a 100644
--- a/third_party/sqlite/src/src/build.c
+++ b/third_party/sqlite/sqlite-src-3070603/src/build.c
@@ -2477,7 +2477,7 @@ Index *sqlite3CreateIndex(
assert( pTab!=0 );
assert( pParse->nErr==0 );
if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0
- && sqlite3StrNICmp(&pTab->zName[7],"altertab_",9)!=0 ){
+ && memcmp(&pTab->zName[7],"altertab_",9)!=0 ){
sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName);
goto exit_create_index;
}
« no previous file with comments | « third_party/sqlite/sqlite-src-3070603/src/btreeInt.h ('k') | third_party/sqlite/sqlite-src-3070603/src/callback.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698