diff options
author | drh <drh@noemail.net> | 2008-07-11 21:02:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-07-11 21:02:53 +0000 |
commit | a34605859d16febe0b51db0231827cd0458f55b3 (patch) | |
tree | 122be86383110e49ba55ec92fade12274fc4c643 /src/select.c | |
parent | f46080903008c923aaba6936590ab27ad80d0e4b (diff) | |
download | sqlite-a34605859d16febe0b51db0231827cd0458f55b3.tar.gz sqlite-a34605859d16febe0b51db0231827cd0458f55b3.zip |
Detect and handles the case where a row is modified or deleted while it
is being read during SELECT processing. (CVS 5399)
FossilOrigin-Name: c80a5d09935c60a2a50bc262c172a94073355f0d
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 e14e2920d..56ede613c 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.454 2008/07/10 17:59:12 danielk1977 Exp $ +** $Id: select.c,v 1.455 2008/07/11 21:02:54 drh Exp $ */ #include "sqliteInt.h" @@ -1165,7 +1165,7 @@ Table *sqlite3ResultSetOfSelect(Parse *pParse, char *zTabName, Select *pSelect){ assert( pTab->nCol>0 ); pTab->aCol = aCol = sqlite3DbMallocZero(db, sizeof(pTab->aCol[0])*pTab->nCol); for(i=0, pCol=aCol; i<pTab->nCol; i++, pCol++){ - Expr *p, *pR; + Expr *p; char *zType; char *zName; int nName; |