diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-01-07 16:15:42 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-01-07 16:15:42 +0000 |
commit | a7c17af64d24483a878148e00e7d0d3099873bb0 (patch) | |
tree | 030d1613b625d61360226c81395d3f182b4594ff /src | |
parent | f3c57015d80d3608e8b37a454ea24e499cecef88 (diff) | |
download | sqlite-a7c17af64d24483a878148e00e7d0d3099873bb0.tar.gz sqlite-a7c17af64d24483a878148e00e7d0d3099873bb0.zip |
Change SQLITE_MAX_FUNCTION_ARG from 100 to 127 to match invariant H16124. Ticket #3567. (CVS 6134)
FossilOrigin-Name: 1fe79ffd772900bdca85ec6cf072677be53cd5ff
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteLimit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteLimit.h b/src/sqliteLimit.h index a1307de6f..8d77d0da2 100644 --- a/src/sqliteLimit.h +++ b/src/sqliteLimit.h @@ -12,7 +12,7 @@ ** ** This file defines various limits of what SQLite can process. ** -** @(#) $Id: sqliteLimit.h,v 1.8 2008/03/26 15:56:22 drh Exp $ +** @(#) $Id: sqliteLimit.h,v 1.9 2009/01/07 16:15:43 danielk1977 Exp $ */ /* @@ -96,7 +96,7 @@ ** The maximum number of arguments to an SQL function. */ #ifndef SQLITE_MAX_FUNCTION_ARG -# define SQLITE_MAX_FUNCTION_ARG 100 +# define SQLITE_MAX_FUNCTION_ARG 127 #endif /* |