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
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index dd0650a..7836dbd 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 @@
** 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