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

Merge the ListPush and ListPop VDBE opcodes into ContextPush and ContextPop. (CVS 1972)

FossilOrigin-Name: eb9b501ad8b0fa0fd63a67ece05fe142d6a19114
This commit is contained in:
drh
2004-09-19 00:50:20 +00:00
parent c2316c3931
commit 344737f60a
7 changed files with 56 additions and 91 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.161 2004/09/07 16:19:53 drh Exp $
** $Id: expr.c,v 1.162 2004/09/19 00:50:21 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1480,6 +1480,7 @@ void sqlite3ExprCode(Parse *pParse, Expr *pExpr){
sqlite3VdbeDequoteP3(v, -1);
} else {
assert( pExpr->iColumn == OE_Ignore );
sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0);
sqlite3VdbeOp3(v, OP_Goto, 0, pParse->trigStack->ignoreJump,
"(IGNORE jump)", 0);
}