⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rpl_ddl.result

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 RESULT
📖 第 1 页 / 共 3 页
字号:
stop slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;reset master;reset slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;start slave;SET AUTOCOMMIT = 1;DROP DATABASE IF EXISTS mysqltest1;DROP DATABASE IF EXISTS mysqltest2;DROP DATABASE IF EXISTS mysqltest3;CREATE DATABASE mysqltest1;CREATE DATABASE mysqltest2;CREATE TABLE mysqltest1.t1 (f1 BIGINT) ENGINE= "InnoDB";INSERT INTO mysqltest1.t1 SET f1= 0;CREATE TABLE mysqltest1.t2 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t3 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t4 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t5 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t6 (f1 BIGINT) ENGINE= "InnoDB";CREATE INDEX my_idx6 ON mysqltest1.t6(f1);CREATE TABLE mysqltest1.t7 (f1 BIGINT) ENGINE= "InnoDB";INSERT INTO mysqltest1.t7 SET f1= 0;CREATE TABLE mysqltest1.t8 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t9 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t10 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t11 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t12 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t13 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t14 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t15 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t16 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t17 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t18 (f1 BIGINT) ENGINE= "InnoDB";CREATE TABLE mysqltest1.t19 (f1 BIGINT) ENGINE= "InnoDB";CREATE TEMPORARY TABLE mysqltest1.t23 (f1 BIGINT);SET AUTOCOMMIT = 0;use mysqltest1;-------- switch to slave --------SET AUTOCOMMIT = 0;use mysqltest1;-------- switch to master -------######## COMMIT  ########-------- switch to master -------INSERT INTO t1 SET f1= 0 + 1;SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)0-------- switch to master -------COMMIT;SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)1TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------######## ROLLBACK  ########-------- switch to master -------INSERT INTO t1 SET f1= 1 + 1;SELECT MAX(f1) FROM t1;MAX(f1)2-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)1TEST-INFO: MASTER: The INSERT is not committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------######## SET AUTOCOMMIT=1  ########-------- switch to master -------INSERT INTO t1 SET f1= 1 + 1;SELECT MAX(f1) FROM t1;MAX(f1)2-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)1-------- switch to master -------SET AUTOCOMMIT=1;SELECT MAX(f1) FROM t1;MAX(f1)2-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)2-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)2TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)2TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------SET AUTOCOMMIT=0;######## START TRANSACTION  ########-------- switch to master -------INSERT INTO t1 SET f1= 2 + 1;SELECT MAX(f1) FROM t1;MAX(f1)3-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)2-------- switch to master -------START TRANSACTION;SELECT MAX(f1) FROM t1;MAX(f1)3-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)3-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)3TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)3TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------######## BEGIN  ########-------- switch to master -------INSERT INTO t1 SET f1= 3 + 1;SELECT MAX(f1) FROM t1;MAX(f1)4-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)3-------- switch to master -------BEGIN;SELECT MAX(f1) FROM t1;MAX(f1)4-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)4-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)4TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)4TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------######## DROP TABLE mysqltest1.t2  ########-------- switch to master -------INSERT INTO t1 SET f1= 4 + 1;SELECT MAX(f1) FROM t1;MAX(f1)5-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)4-------- switch to master -------DROP TABLE mysqltest1.t2;SELECT MAX(f1) FROM t1;MAX(f1)5-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)5-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)5TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)5TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------SHOW TABLES LIKE 't2';Tables_in_mysqltest1 (t2)-------- switch to slave --------SHOW TABLES LIKE 't2';Tables_in_mysqltest1 (t2)-------- switch to master -------######## DROP TEMPORARY TABLE mysqltest1.t23  ########-------- switch to master -------INSERT INTO t1 SET f1= 5 + 1;SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)5-------- switch to master -------DROP TEMPORARY TABLE mysqltest1.t23;SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)5-------- switch to master -------ROLLBACK;Warnings:Warning	1196	Some non-transactional changed tables couldn't be rolled backSELECT MAX(f1) FROM t1;MAX(f1)5TEST-INFO: MASTER: The INSERT is not committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)6TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------SHOW TABLES LIKE 't23';Tables_in_mysqltest1 (t23)-------- switch to slave --------SHOW TABLES LIKE 't23';Tables_in_mysqltest1 (t23)-------- switch to master -------######## RENAME TABLE mysqltest1.t3 to mysqltest1.t20  ########-------- switch to master -------INSERT INTO t1 SET f1= 5 + 1;SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to master -------RENAME TABLE mysqltest1.t3 to mysqltest1.t20;SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)6TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)6TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------SHOW TABLES LIKE 't20';Tables_in_mysqltest1 (t20)t20-------- switch to slave --------SHOW TABLES LIKE 't20';Tables_in_mysqltest1 (t20)t20-------- switch to master -------######## ALTER TABLE mysqltest1.t4 ADD column f2 BIGINT  ########-------- switch to master -------INSERT INTO t1 SET f1= 6 + 1;SELECT MAX(f1) FROM t1;MAX(f1)7-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)6-------- switch to master -------ALTER TABLE mysqltest1.t4 ADD column f2 BIGINT;SELECT MAX(f1) FROM t1;MAX(f1)7-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)7-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)7TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)7TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------describe mysqltest1.t4;Field	Type	Null	Key	Default	Extraf1	bigint(20)	YES		NULL	f2	bigint(20)	YES		NULL	-------- switch to slave --------describe mysqltest1.t4;Field	Type	Null	Key	Default	Extraf1	bigint(20)	YES		NULL	f2	bigint(20)	YES		NULL	-------- switch to master -------######## CREATE TABLE mysqltest1.t21 (f1 BIGINT) ENGINE= "InnoDB"  ########-------- switch to master -------INSERT INTO t1 SET f1= 7 + 1;SELECT MAX(f1) FROM t1;MAX(f1)8-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)7-------- switch to master -------CREATE TABLE mysqltest1.t21 (f1 BIGINT) ENGINE= "InnoDB";SELECT MAX(f1) FROM t1;MAX(f1)8-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)8-------- switch to master -------ROLLBACK;SELECT MAX(f1) FROM t1;MAX(f1)8TEST-INFO: MASTER: The INSERT is committed (Succeeded)-------- switch to slave --------SELECT MAX(f1) FROM t1;MAX(f1)8TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)-------- switch to master -------flush logs;-------- switch to slave --------flush logs;-------- switch to master -------######## CREATE TEMPORARY TABLE mysqltest1.t22 (f1 BIGINT)  ########-------- switch to master -------INSERT INTO t1 SET f1= 8 + 1;SELECT MAX(f1) FROM t1;MAX(f1)9-------- switch to slave --------SELECT MAX(f1) FROM t1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -