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

Performance optimization in btree.c. (CVS 2990)

FossilOrigin-Name: 3e1e6affe256a950a81ad5939b628bafb8463b42
This commit is contained in:
drh
2006-01-22 21:52:56 +00:00
parent eda639e111
commit 504b69898b
4 changed files with 21 additions and 16 deletions

View File

@@ -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.298 2006/01/22 00:42:09 drh Exp $
** $Id: select.c,v 1.299 2006/01/22 21:52:57 drh Exp $
*/
#include "sqliteInt.h"
@@ -566,7 +566,7 @@ static int selectInnerLoop(
break;
}
/* If any row exists in the result set, record that fact and abort.
/* If any row exist in the result set, record that fact and abort.
*/
case SRT_Exists: {
sqlite3VdbeAddOp(v, OP_MemInt, 1, iParm);