1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

rpl_session_var.test fixed to not depend on mysql_test_run parameters

mysql-test/suite/rpl/r/rpl_session_var.result:
  result fixed
mysql-test/suite/rpl/t/rpl_session_var.test:
  test fixed
This commit is contained in:
unknown
2007-07-28 14:10:56 +05:00
parent baf24e69da
commit 5fb351ae07
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ CREATE TABLE t1 (
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
INSERT INTO t1(data) VALUES(SESSION_USER());
SELECT * FROM t1;
id data
SELECT length(data) < 100 FROM t1;
length(data) < 100
1
drop table t1;

View File

@@ -56,7 +56,7 @@ INSERT INTO t1(data) VALUES(SESSION_USER());
save_master_pos;
connection slave;
sync_with_master;
SELECT * FROM t1;
SELECT length(data) < 100 FROM t1;
connection master;
drop table t1;
save_master_pos;