1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Remove an unreachable branch from the VACUUM logic.

FossilOrigin-Name: 65ace4b062d9454a296c5a1aa7ea7316b1507ad4
This commit is contained in:
drh
2015-04-13 14:03:54 +00:00
parent 4a614e9013
commit ab06b0e5be
3 changed files with 9 additions and 8 deletions

View File

@@ -2024,7 +2024,8 @@ static int xferOptimization(
int i;
for(i=0; i<pSrcIdx->nColumn; i++){
char *zColl = pSrcIdx->azColl[i];
if( zColl && sqlite3_stricmp("BINARY", zColl) ) break;
assert( zColl!=0 );
if( sqlite3_stricmp("BINARY", zColl) ) break;
}
if( i==pSrcIdx->nColumn ){
useSeekResult = OPFLAG_USESEEKRESULT;