| 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;
|
| }
|
|
|