aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2003-05-29 17:50:55 +0000
committerdrh <drh@noemail.net>2003-05-29 17:50:55 +0000
commit8372b8d13442ad85ab76f6b1bf89532f45fdce59 (patch)
treed837fef98415ec9899a1dbf6cf54721e0cd96768 /src/sqliteInt.h
parent9ac717d7f662b2665372ba11cbfde5c2bf304200 (diff)
downloadsqlite-8372b8d13442ad85ab76f6b1bf89532f45fdce59.tar.gz
sqlite-8372b8d13442ad85ab76f6b1bf89532f45fdce59.zip
Change the row-size limit back to 1MB. It was temporarily raised to 16MB.
We'll probably move it to 16MB eventually, but not just yet. (CVS 989) FossilOrigin-Name: b84c4035c6b06469055798cf412fa4da8b50fa17
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index dd0650a77..7836dbd7d 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.187 2003/05/29 17:43:08 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.188 2003/05/29 17:50:55 drh Exp $
*/
#include "config.h"
#include "sqlite.h"
@@ -137,8 +137,8 @@ typedef unsigned INTPTR_TYPE uptr; /* Big enough to hold a pointer */
** original pages plus 16448 overflow pages each holding 1020 bytes of
** data.
*/
-/* #define MAX_BYTES_PER_ROW 1048576 */
-#define MAX_BYTES_PER_ROW 16777198
+#define MAX_BYTES_PER_ROW 1048576
+/* #define MAX_BYTES_PER_ROW 16777198 */
/*
** If memory allocation problems are found, recompile with