1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

compatibility fixes, crashing tests

This commit is contained in:
serg@serg.mylan
2005-02-22 15:22:37 +01:00
parent 82571d6b84
commit a4dbb3b061
7 changed files with 28 additions and 9 deletions

View File

@ -253,7 +253,11 @@ typedef struct xid_t XID;
/* for recover() handlerton call */
#define MIN_XID_LIST_SIZE 128
#ifdef SAFEMALLOC
#define MAX_XID_LIST_SIZE 256
#else
#define MAX_XID_LIST_SIZE (1024*128)
#endif
/*
handlerton is a singleton structure - one instance per storage engine -