1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Revert extra debug printouts

This commit is contained in:
msvensson@pilot.mysql.com
2008-03-14 15:25:11 +01:00
parent 1e39c3cc70
commit ddbdbb1bc8
2 changed files with 0 additions and 16 deletions

View File

@@ -5,15 +5,12 @@ reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
RESET MASTER;
Last errno after reset master on slave: 0
CHANGE MASTER TO master_host="127.0.0.1",master_port=SLAVE_PORT,master_user="root";
START SLAVE;
Last errno after start slave: 0
CREATE TABLE t1 (a int key, b int) ENGINE=ndb;
SHOW TABLES;
Tables_in_test
t1
Last errno after table on both: 0
INSERT INTO t1 VALUES (1,2);
INSERT INTO t1 VALUES (2,3);
SELECT * FROM t1 ORDER BY a;