mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
689578a099
Call pthread_mutex_destroy() on not used mutex. Changed comments in .h and .c files from // -> /* */ Added detection of mutex on which one didn't call pthread_mutex_destroy() Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression" Added optimisation for ORDER BY NULL
21 lines
622 B
Text
21 lines
622 B
Text
connect (master,localhost,root,,test,$MASTER_MYPORT,master.sock);
|
|
connect (slave,localhost,root,,test,$SLAVE_MYPORT,slave.sock);
|
|
connection master;
|
|
reset master;
|
|
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
|
|
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
|
|
connection slave;
|
|
slave start;
|
|
connection master;
|
|
drop table if exists t1;
|
|
create table t1(n int);
|
|
insert into t1 values(24);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|