diff options
author | drh <drh@noemail.net> | 2008-03-20 16:30:17 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-03-20 16:30:17 +0000 |
commit | b1a6c3c1cc41f16693c0b0855c27e5429e6867a2 (patch) | |
tree | 36c78d4910bf0bc7b43d595b69dade6d77b21a5a /src/sqliteInt.h | |
parent | 81a392f7d79f17c411027c27b899ed6c8d72c519 (diff) | |
download | sqlite-b1a6c3c1cc41f16693c0b0855c27e5429e6867a2.tar.gz sqlite-b1a6c3c1cc41f16693c0b0855c27e5429e6867a2.zip |
Reinstate test cases for the limit tests. The sqlite3_limit() API is now
tested and working. (CVS 4899)
FossilOrigin-Name: 4c4be4c3c8aae97f1d85442b25afba9f0b02c8b3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 66a7aebd7..8c7173b2f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.677 2008/03/20 14:03:29 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.678 2008/03/20 16:30:18 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -2069,7 +2069,7 @@ int sqlite3VtabBegin(sqlite3 *, sqlite3_vtab *); FuncDef *sqlite3VtabOverloadFunction(sqlite3 *,FuncDef*, int nArg, Expr*); void sqlite3InvalidFunction(sqlite3_context*,int,sqlite3_value**); int sqlite3Reprepare(Vdbe*); -void sqlite3ExprListCheckLength(Parse*, ExprList*, int, const char*); +void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*); CollSeq *sqlite3BinaryCompareCollSeq(Parse *, Expr *, Expr *); |