mariadb/mysql-test/r/rpl000018.result
sasha@mysql.sashanet.com 6b37cce2ae mysqltest can now talk to manager and start/stop servers with
server_start/server_stop
changed rpl000018 to use the new server restart feature instead of a
hack
2001-10-01 16:13:55 -06:00

13 lines
202 B
Text

reset slave;
slave start;
show master logs;
Log_name
master-bin.001
master-bin.002
drop table if exists t1;
create table t1(n int);
insert into t1 values (3351);
select * from t1;
n
3351
drop table t1;