mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -582,6 +582,24 @@ XA START 'gtrid', 'bqual', 0x80000000;
|
||||
|
||||
--source include/wait_until_count_sessions.inc
|
||||
|
||||
--echo #
|
||||
--echo # XA states and SHOW commands
|
||||
--echo #
|
||||
create table t1 (pk int primary key) engine=innodb;
|
||||
xa start 'foo';
|
||||
insert t1 set pk=1;
|
||||
xa end 'foo';
|
||||
xa prepare 'foo';
|
||||
show status like 'foo';
|
||||
--query_vertical select table_name,table_comment from information_schema.tables where table_schema='test'
|
||||
--query_vertical select table_name,table_rows,table_comment from information_schema.tables where table_schema='test'
|
||||
xa commit 'foo';
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.2 tests
|
||||
--echo #
|
||||
|
||||
#
|
||||
# MDEV-22002 Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())'
|
||||
# failed upon CREATE TEMPORARY SEQUENCE under XA
|
||||
|
Reference in New Issue
Block a user