diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
commit | 3f619478f796eddbba6e39502fe941b285dd97b1 (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/perfschema/include/reset_transaction_gtid.inc | |
parent | Initial commit. (diff) | |
download | mariadb-upstream.tar.xz mariadb-upstream.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/perfschema/include/reset_transaction_gtid.inc')
-rw-r--r-- | mysql-test/suite/perfschema/include/reset_transaction_gtid.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/include/reset_transaction_gtid.inc b/mysql-test/suite/perfschema/include/reset_transaction_gtid.inc new file mode 100644 index 00000000..c8eaf53a --- /dev/null +++ b/mysql-test/suite/perfschema/include/reset_transaction_gtid.inc @@ -0,0 +1,20 @@ +# ==== Purpose ==== +# +# Auxiliary file used by transaction_gtid.test +# +# Invoked between transactions in order to reset the state: +# - set GTID_NEXT to AUTOMATIC since this is required after +# any transaction that has GTID_NEXT=UUID:NUMBER +# - RESET MASTER in order to clear @@global.gtid_executed, so +# that the same GTID can be executed again. +# - truncate the performance_schema.events_transaction_* tables +# +# All this is done on the connection 'server_1'. + +--disable_query_log +--connection server_1 +RESET MASTER; +TRUNCATE TABLE performance_schema.events_transactions_history; +TRUNCATE TABLE performance_schema.events_transactions_current; +--enable_query_log +--connection default |