diff options
author | drh <drh@noemail.net> | 2005-06-12 12:01:19 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-06-12 12:01:19 +0000 |
commit | 4a9f241c371857ecb55f90a6e07b997612fedd9b (patch) | |
tree | 56eede25ec15670a55867cd2886cd66322822c9b /src/select.c | |
parent | 0ccebe7e2d2ffd312b03f738ce8c36ec9be0fac9 (diff) | |
download | sqlite-4a9f241c371857ecb55f90a6e07b997612fedd9b.tar.gz sqlite-4a9f241c371857ecb55f90a6e07b997612fedd9b.zip |
Elminiate a VM opcode that was no longer needed. (CVS 2505)
FossilOrigin-Name: 97b348a5ad2f090ba7a75467b97c6dfb575df09c
Diffstat (limited to 'src/select.c')
-rw-r--r-- | src/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.c b/src/select.c index f27db280a..5985c4a08 100644 --- a/src/select.c +++ b/src/select.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id: select.c,v 1.250 2005/06/06 21:19:57 drh Exp $ +** $Id: select.c,v 1.251 2005/06/12 12:01:19 drh Exp $ */ #include "sqliteInt.h" @@ -1690,7 +1690,7 @@ static int multiSelect( iCont = sqlite3VdbeMakeLabel(v); sqlite3VdbeAddOp(v, OP_Rewind, tab1, iBreak); computeLimitRegisters(pParse, p); - iStart = sqlite3VdbeAddOp(v, OP_FullKey, tab1, 0); + iStart = sqlite3VdbeAddOp(v, OP_RowKey, tab1, 0); sqlite3VdbeAddOp(v, OP_NotFound, tab2, iCont); rc = selectInnerLoop(pParse, p, p->pEList, tab1, p->pEList->nExpr, p->pOrderBy, -1, eDest, iParm, |