diff options
author | drh <drh@noemail.net> | 2001-09-14 03:24:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-09-14 03:24:23 +0000 |
commit | 3fc190cc3fc88d712662581ac9c5e041d8b62c1b (patch) | |
tree | 5c42fccffa434d3592ca30c7f7aae56b1e7e909c /src/expr.c | |
parent | 009d3b72ca406f0ff69c8dd38e400ee8635cbb76 (diff) | |
download | sqlite-3fc190cc3fc88d712662581ac9c5e041d8b62c1b.tar.gz sqlite-3fc190cc3fc88d712662581ac9c5e041d8b62c1b.zip |
All tests now pass. But there are still issues. For example, inserts
are way too slow. And additional tests are needed for new features. (CVS 243)
FossilOrigin-Name: e7b65e37fd88c4d69c89cfe73ab345b8b645ada6
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index 0a1636c41..e5d4535a5 100644 --- a/src/expr.c +++ b/src/expr.c @@ -24,7 +24,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions. ** -** $Id: expr.c,v 1.26 2001/09/13 14:46:10 drh Exp $ +** $Id: expr.c,v 1.27 2001/09/14 03:24:25 drh Exp $ */ #include "sqliteInt.h" @@ -517,7 +517,7 @@ void sqliteExprCode(Parse *pParse, Expr *pExpr){ }else if( pExpr->iColumn>=0 ){ sqliteVdbeAddOp(v, OP_Column, pExpr->iTable, pExpr->iColumn, 0, 0); }else{ - sqliteVdbeAddOp(v, OP_FullKey, pExpr->iTable, 0, 0, 0); + sqliteVdbeAddOp(v, OP_Recno, pExpr->iTable, 0, 0, 0); } break; } |