summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog_encryption/rpl_parallel_ignore_error_on_rotate.test
diff options
context:
space:
mode:
authorTingyao Nian <tingynia@amazon.com>2023-03-15 19:14:01 +0000
committerAlexander Barkov <bar@mariadb.com>2023-03-21 17:19:44 +0400
commitdccbb5a6dba21b241e1796af82a0db85de28d195 (patch)
treea0a7a2eeebdf813ba1aa83979cfa727850d4aacc /mysql-test/suite/binlog_encryption/rpl_parallel_ignore_error_on_rotate.test
parent1495f057c8a3aa5783de0993f6f95aae3e352f7a (diff)
downloadmariadb-git-dccbb5a6dba21b241e1796af82a0db85de28d195.tar.gz
[MDEV-30824] Fix binlog to use 'String' for setting 'character_set_client'
Commit a923d6f49c1ad6fd3f4d6ec02e444c26e4d1dfa8 disabled numeric setting of character_set_* variables with non-default values: MariaDB [(none)]> set character_set_client=224; ERROR 1115 (42000): Unknown character set: '224' However the corresponding binlog functionality still write numeric values for log event, and this will break binlog replay if the value is not default. Now make the server use 'String' type for 'character_set_client' when generating binlog events Before: /*!\C utf8mb4 *//*!*/; SET @@session.character_set_client=224,@@session.collation_connection=224,@@session.collation_server=33/*!*/; After: /*!\C utf8mb4 *//*!*/; SET @@session.character_set_client=utf8mb4,@@session.collation_connection=33,@@session.collation_server=8/*!*/; Note: prior to the previous commit, setting with '224' or '45' or 'utf8mb4' have the same effect, as they all set the parameter to 'utf8mb4'. All new code of the whole pull request, including one or several files that are either new files or modified ones, are contributed under the BSD-new license. I am contributing on behalf of my employer Amazon Web Services, Inc.
Diffstat (limited to 'mysql-test/suite/binlog_encryption/rpl_parallel_ignore_error_on_rotate.test')
0 files changed, 0 insertions, 0 deletions