mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Use only MySQL code for TOI error vote
For TOI events specifically we have a situation where in case of the same error different nodes may generate different messages. This may be for two reasons: - different locale setting between the current client session and server default (we can reasonably require server locales to be identical on all nodes, but user can change message locale for the session) - non-deterministic course of STATEMENT execution e.g. for ALTER TABLE On the other hand we may reasonably expect TOI event failures since they are executed after replication, so we must ensure that voting is consistent. For that purpose error codes should be sufficiently unique and deterministic for TOI event failures as DDLs normally deal with a single object, so we can merely use MySQL error codes to vote on. Notice that this problem does not happen with regular transactional writesets, since the originator node will always vote success and replica nodes are assumed to have the same global locale setting. As such different error messages indicate different errors even if the error code is the same (e.g. ER_DUP_KEY can happen on different rows tables). Use only MySQL error code (without the error message) for error voting in case of TOI event failure. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
This commit is contained in:
committed by
Julius Goryavsky
parent
7119149f83
commit
731a5aba0b
@@ -7,8 +7,9 @@ connection node_3;
|
||||
SET SESSION wsrep_on=OFF;
|
||||
DROP SCHEMA test;
|
||||
connection node_1;
|
||||
SET SESSION lc_messages='fr_FR';
|
||||
CREATE SCHEMA test;
|
||||
ERROR HY000: Can't create database 'test'; database exists
|
||||
ERROR HY000: Ne peut cr<63>er la base 'test'; elle existe d<>j<EFBFBD>
|
||||
connection node_1;
|
||||
SET SESSION wsrep_sync_wait=0;
|
||||
connection node_2;
|
||||
|
@@ -24,6 +24,9 @@ DROP SCHEMA test;
|
||||
|
||||
# This should fail on nodes 1 and 2 and succeed on node 3
|
||||
--connection node_1
|
||||
# Make error message on source node different by changing locale
|
||||
# It should still agree with node 2
|
||||
SET SESSION lc_messages='fr_FR';
|
||||
--error ER_DB_CREATE_EXISTS
|
||||
CREATE SCHEMA test;
|
||||
|
||||
|
Reference in New Issue
Block a user