diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8ea3e3949..a22061aac 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -23,7 +23,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.49 2001/09/15 13:15:13 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.50 2001/09/15 14:43:39 drh Exp $ */ #include "sqlite.h" #include "vdbe.h" @@ -50,6 +50,12 @@ typedef unsigned short int u16; /* 2-byte unsigned integer */ typedef unsigned char u8; /* 1-byte unsigned integer */ /* +** The maximum number of bytes of data that can be put into a single +** row of a single table. +*/ +#define MAX_BYTES_PER_ROW 65535 + +/* ** If memory allocation problems are found, recompile with ** ** -DMEMORY_DEBUG=1 |