mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
MDEV-9039 Can't upgrade MariaDB to to 10.1.8 version from 10.0.21
Don't mark the SEQUENCE engine as XA-capable. The engine never registers itself for any transaction, so it doesn't matter whether it is XA-capable or not. The only effect of being "XA-capable" is breaking the "number of XA-capable engines" check of TC_LOG_MMAP.
This commit is contained in:
@@ -483,7 +483,7 @@ static int init(void *p)
|
||||
hton->create= create_handler;
|
||||
hton->discover_table= discover_table;
|
||||
hton->discover_table_existence= discover_table_existence;
|
||||
hton->commit= hton->rollback= hton->prepare=
|
||||
hton->commit= hton->rollback=
|
||||
(int (*)(handlerton *, THD *, bool)) &dummy_ret_int;
|
||||
hton->savepoint_set= hton->savepoint_rollback= hton->savepoint_release=
|
||||
(int (*)(handlerton *, THD *, void *)) &dummy_ret_int;
|
||||
|
Reference in New Issue
Block a user