support for memo types (inline only)

text required fields
corrections to bitmask sizing.
moved references to page size to MdbHandle->pg_size
This commit is contained in:
brianb
2000-03-16 02:16:35 +00:00
parent 62e65cdd26
commit 9551d017a8
6 changed files with 37 additions and 19 deletions

View File

@@ -32,6 +32,7 @@
#define MDB_PGSIZE 2048
#define MDB_MAX_OBJ_NAME 30
#define MDB_CATALOG_PG 18
#define MDB_MEMO_OVERHEAD 12
enum {
MDB_FORM = 0,
@@ -71,6 +72,7 @@ typedef struct {
unsigned char pg_buf[MDB_PGSIZE];
int num_catalog;
GArray *catalog;
int pg_size;
} MdbHandle;
typedef struct {
@@ -107,6 +109,7 @@ typedef struct {
int col_size;
void *bind_ptr;
GHashTable *properties;
unsigned char is_fixed;
} MdbColumn;
/* mem.c */