mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
88aff4bf85
Speed up column-completion in 'mysql' Don't use ISAM if HAVE_ISAM is not defined A lot of fixes for the embedded version. All libraries are now included in libmysqld.a Changed arguments to convert_dirname() to make it more general. Renamed files in the 'merge' directory to all use a common prefix. Don't compile both assembler and C functions on x86
21 lines
571 B
Text
21 lines
571 B
Text
connect (master,localhost,root,,test,0,master.sock);
|
|
connect (slave,localhost,root,,test,0,slave.sock);
|
|
connection master;
|
|
reset master;
|
|
grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
|
|
grant file 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;
|