1
0
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:
mistachkin
2019-11-06 19:25:45 +00:00
parent 4fb24c82cd
commit bde3a4f680
3 changed files with 9 additions and 9 deletions

View File

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