diff options
author | drh <drh@noemail.net> | 2001-09-15 14:43:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-09-15 14:43:39 +0000 |
commit | 872ff86f2c0ee7b171c46609f49af16a0cc31b9c (patch) | |
tree | d5208a227baa24aef6ca3994f8381d6eb1f4a2f3 /src/sqliteInt.h | |
parent | 092d0350d5bcfe2d1a02dc3a821b474c9c0ecdbd (diff) | |
download | sqlite-872ff86f2c0ee7b171c46609f49af16a0cc31b9c.tar.gz sqlite-872ff86f2c0ee7b171c46609f49af16a0cc31b9c.zip |
Separate columns in keys using nulls instead of tabs. (CVS 249)
FossilOrigin-Name: 8e2f3f751ea342372c94977ff27baaff5126009a
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 |