Bug fixes and speed improvements. Delete is still slow. (CVS 244)

FossilOrigin-Name: 7da856cd94d2572070e40762e5bc477679e60042
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 71d1e02..c99c6a9 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -23,7 +23,7 @@
 *************************************************************************
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqliteInt.h,v 1.45 2001/09/13 16:18:54 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.46 2001/09/14 16:42:12 drh Exp $
 */
 #include "sqlite.h"
 #include "vdbe.h"
@@ -35,6 +35,13 @@
 #include <assert.h>
 
 /*
+** The maximum number of in-memory pages to use for the main database
+** table and for temporary tables.
+*/
+#define MAX_PAGES   150
+#define TEMP_PAGES   50
+
+/*
 ** The paging system deals with 32-bit integers.
 */
 typedef unsigned int u32;