mariadb/mysql-test/suite/galera/r/MDEV-25494.result
Alexander Barkov 36eba98817 MDEV-19123 Change default charset from latin1 to utf8mb4
Changing the default server character set from latin1 to utf8mb4.
2024-07-11 10:21:07 +04:00

14 lines
460 B
Text

connection node_2;
connection node_1;
SET SESSION binlog_format=STATEMENT;
Warnings:
Warning 1105 MariaDB Galera and flashback do not support binlog format: STATEMENT
CREATE TEMPORARY TABLE t (i INT) UNION=(t);
ALTER TABLE t ADD extrac CHAR(1);
SHOW CREATE TABLE t;
Table Create Table
t CREATE TEMPORARY TABLE `t` (
`i` int(11) DEFAULT NULL,
`extrac` char(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t;