mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-18 10:21:03 +03:00
Minor simplification to the changes from check-in [36c11ad51f].
FossilOrigin-Name: 7bc8205dd9c1657c736a9c6a1a90dd9dad442accfbb77d296eaae2c09ab46bd1
This commit is contained in:
@@ -1059,7 +1059,7 @@ static void codeDeferredSeek(
|
||||
x1 = pIdx->aiColumn[i];
|
||||
x2 = sqlite3TableColumnToStorage(pTab, x1);
|
||||
testcase( x1!=x2 );
|
||||
if( pIdx->aiColumn[i]>=0 ) ai[x2+1] = i+1;
|
||||
if( x1>=0 ) ai[x2+1] = i+1;
|
||||
}
|
||||
sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user