mirror of
https://github.com/MariaDB/server.git
synced 2025-02-23 05:43:08 +01:00
14 lines
460 B
Text
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;
|