mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Fix a problem in OP_IdxDelete as used by REPLACE conflict resolution that
comes up due to recent enhancements that reduce the work required for UNIQUE NOT NULL indices. FossilOrigin-Name: 61d7d4753f36932293c0eb1ca893b17d18355ad3
This commit is contained in:
@@ -4661,7 +4661,7 @@ case OP_IdxDelete: {
|
||||
if( ALWAYS(pCrsr!=0) ){
|
||||
r.pKeyInfo = pC->pKeyInfo;
|
||||
r.nField = (u16)pOp->p3;
|
||||
r.flags = 0;
|
||||
r.flags = UNPACKED_PREFIX_MATCH;
|
||||
r.aMem = &aMem[pOp->p2];
|
||||
#ifdef SQLITE_DEBUG
|
||||
{ int i; for(i=0; i<r.nField; i++) assert( memIsValid(&r.aMem[i]) ); }
|
||||
|
Reference in New Issue
Block a user