summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000006.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/rpl000006.test')
-rw-r--r--mysql-test/t/rpl000006.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/rpl000006.test b/mysql-test/t/rpl000006.test
index ffab3ebfc1e..8668aac0b72 100644
--- a/mysql-test/t/rpl000006.test
+++ b/mysql-test/t/rpl000006.test
@@ -5,11 +5,11 @@ set timestamp=200006;
drop table if exists foo;
create table foo(t timestamp not null,a char(1));
insert into foo ( a) values ('F');
-@r/rpl000006.result select unix_timestamp(t) from foo;
+select unix_timestamp(t) from foo;
connection slave;
drop table if exists foo;
load table foo from master;
-@r/rpl000006.result select unix_timestamp(t) from foo;
+select unix_timestamp(t) from foo;
connection master;
drop table foo;
save_master_pos;