mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
compatibility fixes, crashing tests
include/my_sys.h: sol9x86, sunfire100b, qnx compatibility mysql-test/t/rpl_rotate_logs.test: fix the test sql/ha_innodb.cc: don't bother sql/handler.cc: few more ways to crash mysqld :) sql/handler.h: gdb/safemalloc workaround sql/log.cc: rotate a binlog on heuristic recover sql/mysqld.cc: rotate a binlog on heuristic recover
This commit is contained in:
@ -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 -
|
||||
|
Reference in New Issue
Block a user