aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2003-09-06 22:18:07 +0000
committerdrh <drh@noemail.net>2003-09-06 22:18:07 +0000
commit7c972dec5ca539a5f33507a00d5db2ba66373887 (patch)
tree989489c046b5beee09cf1bb010bd8d55603c4c1c /src/expr.c
parent9a32464b543cda85c698bd14e3561c4ebff22da1 (diff)
downloadsqlite-7c972dec5ca539a5f33507a00d5db2ba66373887.tar.gz
sqlite-7c972dec5ca539a5f33507a00d5db2ba66373887.zip
Update Makefile.in for the new vdbeaux.c file. Remove the experimental
"sqlite_instantiate()" routine and replace it with "sqlite_bind()" which is more like ODBC and JDBC. (CVS 1095) FossilOrigin-Name: 990bb11898a539bb0795a4a216fcd989943a0fb2
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index 46bd04d47..398bf8f62 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -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.99 2003/09/06 01:10:47 drh Exp $
+** $Id: expr.c,v 1.100 2003/09/06 22:18:08 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1046,7 +1046,7 @@ void sqliteExprCode(Parse *pParse, Expr *pExpr){
break;
}
case TK_VARIABLE: {
- sqliteVdbeAddOp(v, OP_Variable, atoi(&pExpr->token.z[1]), 0);
+ sqliteVdbeAddOp(v, OP_Variable, pExpr->iTable, 0);
break;
}
case TK_LT: