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

📄 rpl_heap.test

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TEST
字号:
# You must run this test with --manager.require_manager;# Don't know why, but using TCP/IP connections makes this test fail# with "Lost connection to MySQL server during query" when we# issue a query after the server restart.# Maybe this is something awkward in mysqltest or in the manager?# So we use sockets.connect (master,localhost,root,,test,0,$MASTER_MYPORT);connect (slave,localhost,root,,test,0,slave.sock);connection master;reset master;drop table if exists t1;# we use CREATE SELECT to verify that DELETE does not get into binlog# before CREATE SELECTcreate table t1 type=HEAP select 10 as a;insert into t1 values(11);save_master_pos;show binlog events from 79;connection slave;reset slave;start slave;sync_with_master;show create table t1;select * from t1; # should be one rowserver_stop master;server_start master;connection master;select * from t1;# to check that DELETE is not written twice# (the LIMIT is to not use the query cache)select * from t1 limit 10;save_master_pos;show binlog events in 'master-bin.002' from 79;connection slave;sync_with_master;select * from t1; # should be empty# clean upconnection master;drop table t1;save_master_pos;connection slave;sync_with_master;# End of 4.1 tests

⌨️ 快捷键说明

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