Commit e20fb236 authored by unknown's avatar unknown

Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.1-opt

into  mysql.com:/home/hf/work/29878/my51-29878

parents 9c79db31 5fb351ae
...@@ -47,7 +47,7 @@ CREATE TABLE t1 ( ...@@ -47,7 +47,7 @@ CREATE TABLE t1 (
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM; ) ENGINE=MyISAM;
INSERT INTO t1(data) VALUES(SESSION_USER()); INSERT INTO t1(data) VALUES(SESSION_USER());
SELECT * FROM t1; SELECT length(data) < 100 FROM t1;
id data length(data) < 100
1 1
drop table t1; drop table t1;
...@@ -56,7 +56,7 @@ INSERT INTO t1(data) VALUES(SESSION_USER()); ...@@ -56,7 +56,7 @@ INSERT INTO t1(data) VALUES(SESSION_USER());
save_master_pos; save_master_pos;
connection slave; connection slave;
sync_with_master; sync_with_master;
SELECT * FROM t1; SELECT length(data) < 100 FROM t1;
connection master; connection master;
drop table t1; drop table t1;
save_master_pos; save_master_pos;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment