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

Add a few more tests to sqllimit1.test. (CVS 3954)

FossilOrigin-Name: eeee6b71e5643511320cbe15bafa170cfd02877f
This commit is contained in:
danielk1977
2007-05-08 17:54:43 +00:00
parent 428de1c03a
commit 7a15a4beef
6 changed files with 92 additions and 19 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.285 2007/04/18 17:07:58 drh Exp $
** $Id: expr.c,v 1.286 2007/05/08 17:54:44 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -653,6 +653,21 @@ no_mem:
return 0;
}
/*
** If the expression list pEList contains more than iLimit elements,
** leave an error message in pParse.
*/
void sqlite3ExprListCheckLength(
Parse *pParse,
ExprList *pEList,
int iLimit,
const char *zObject
){
if( pEList->nExpr>iLimit ){
sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
}
}
/*
** Delete an entire expression list.
*/