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

Comment change on the previous check-in. No changes to code. (CVS 4918)

FossilOrigin-Name: 72ae456239eb9f75b744f6733c4441b380bd1be1
This commit is contained in:
drh
2008-03-26 12:50:14 +00:00
parent ad27e76110
commit 995ae279b3
3 changed files with 11 additions and 8 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.420 2008/03/26 12:46:24 drh Exp $
** $Id: select.c,v 1.421 2008/03/26 12:50:15 drh Exp $
*/
#include "sqliteInt.h"
@@ -549,6 +549,9 @@ static void selectInnerLoop(
pDest->iMem = sqlite3GetTempRange(pParse, nResultCol);
pDest->nMem = nResultCol;
}else if( pDest->nMem!=nResultCol ){
/* This happens when two SELECTs of a compound SELECT have differing
** numbers of result columns. The error message will be generated by
** a higher-level routine. */
return;
}
regResult = pDest->iMem;