mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Omit some extra code from non-SQLITE_ENABLE_UPDATE_DELETE_LIMIT builds.
FossilOrigin-Name: 72be33f9c84de3ec4afc40549482417456ca82c1d16b473dc034b144055271e5
This commit is contained in:
@@ -711,7 +711,7 @@ static int codeTriggerProgram(
|
||||
targetSrcList(pParse, pStep),
|
||||
sqlite3ExprListDup(db, pStep->pExprList, 0),
|
||||
sqlite3ExprDup(db, pStep->pWhere, 0),
|
||||
pParse->eOrconf
|
||||
pParse->eOrconf, 0, 0, 0
|
||||
);
|
||||
break;
|
||||
}
|
||||
@@ -727,7 +727,7 @@ static int codeTriggerProgram(
|
||||
case TK_DELETE: {
|
||||
sqlite3DeleteFrom(pParse,
|
||||
targetSrcList(pParse, pStep),
|
||||
sqlite3ExprDup(db, pStep->pWhere, 0)
|
||||
sqlite3ExprDup(db, pStep->pWhere, 0), 0, 0, 0
|
||||
);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user