diff options
author | drh <drh@noemail.net> | 2007-12-17 16:20:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-12-17 16:20:06 +0000 |
commit | cbd2da9ce9b45623ba96f6cd251bdc1319d92d2a (patch) | |
tree | 5a1586b48a165489c6b16dd882742201234846d9 /src/sqliteLimit.h | |
parent | 92e3e09467ffb693d1060b0d4fe7b537d1b49c5c (diff) | |
download | sqlite-cbd2da9ce9b45623ba96f6cd251bdc1319d92d2a.tar.gz sqlite-cbd2da9ce9b45623ba96f6cd251bdc1319d92d2a.zip |
When SQLITE_MAX_SQL_LENGTH is 0, disable the limit. Make the default 0.
Once again build the sqlite3 CLI from individual source files so that
it can be built on systems that lack tclsh. Tickets #2845 and #2846. (CVS 4636)
FossilOrigin-Name: 07aeca3b9c51e538ba7939950a970f62e51bd3ea
Diffstat (limited to 'src/sqliteLimit.h')
-rw-r--r-- | src/sqliteLimit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteLimit.h b/src/sqliteLimit.h index 963284418..64cf1ca1d 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.5 2007/12/13 21:54:11 drh Exp $ +** @(#) $Id: sqliteLimit.h,v 1.6 2007/12/17 16:20:07 drh Exp $ */ /* @@ -49,10 +49,10 @@ /* ** The maximum length of a single SQL statement in bytes. -** The hard limit is 1 million. +** A value of zero means there is no limit. */ #ifndef SQLITE_MAX_SQL_LENGTH -# define SQLITE_MAX_SQL_LENGTH 1000000 +# define SQLITE_MAX_SQL_LENGTH 0 #endif /* |