diff options
author | serg@serg.mylan <> | 2005-02-22 15:22:37 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2005-02-22 15:22:37 +0100 |
commit | a4dbb3b061a2d9172d2a4536f35ecb5629eb0c36 (patch) | |
tree | 97a0fc943f0fefa7f11f4a58e4ccb54e23b025bc /sql/handler.h | |
parent | 82571d6b844f0038a639c92c2b1cd1591b71901c (diff) | |
download | mariadb-git-a4dbb3b061a2d9172d2a4536f35ecb5629eb0c36.tar.gz |
compatibility fixes, crashing tests
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 3a1862cad07..ad9345ac75c 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -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 - |