1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Change SQLITE_MAX_FUNCTION_ARG from 100 to 127 to match invariant H16124. Ticket #3567. (CVS 6134)

FossilOrigin-Name: 1fe79ffd772900bdca85ec6cf072677be53cd5ff
This commit is contained in:
danielk1977
2009-01-07 16:15:42 +00:00
parent f3c57015d8
commit a7c17af64d
3 changed files with 10 additions and 10 deletions

View File

@@ -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
/*