mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
82174dae06
In particular: * @@debug deprecated since 5.5.37 * sr_YU locale deprecated since 10.0.11 * "engine_condition_pushdown" in the @@optimizer_switch deprecated since 10.1.1 * @@date_format, @@datetime_format, @@time_format, @@max_tmp_tables deprecated since 10.1.2 * @@wsrep_causal_reads deprecated since 10.1.3 * "parser" in mroonga table comment deprecated since 10.2.11
28 lines
714 B
Text
28 lines
714 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
drop table if exists t1;
|
|
SET @old_debug= @@session.debug_dbug;
|
|
CREATE TABLE t1 (i INT, KEY(i)) ENGINE=InnoDB;
|
|
CREATE OR REPLACE TEMPORARY TABLE tmp (a int, b int, key(a)) engine=myisam;
|
|
SET debug_dbug='+d,send_kill_after_delete';
|
|
CREATE OR REPLACE TABLE t1 LIKE tmp;
|
|
SET debug_dbug=@old_debug;
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
tmp
|
|
t1
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` int(11) DEFAULT NULL,
|
|
KEY `a` (`a`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
|
connection slave;
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
t1
|
|
connection master;
|
|
drop temporary table if exists tmp;
|
|
drop table t1;
|
|
include/rpl_end.inc
|