diff options
author | monty@mysql.com <> | 2004-07-15 04:19:07 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-07-15 04:19:07 +0300 |
commit | 5b3c418b4835c688b0859a3e82d0280cd177e52a (patch) | |
tree | e83d5aa4118851b076ed870c7e9c5fd8b5bb53ef /mysql-test/r/mysqlbinlog.result | |
parent | 31fe2837f9c0579454cba635ee127536a6ac55ce (diff) | |
download | mariadb-git-5b3c418b4835c688b0859a3e82d0280cd177e52a.tar.gz |
After merge fixes
Note: The following tests fails
- fulltext (Sergei has promised to fix)
- rpl_charset (Guilhem should fix)
- rpl_timezone (Dimitray has promised to fix)
Sanja needs to check out the calling of close_thread_tables() in sp_head.cc
Diffstat (limited to 'mysql-test/r/mysqlbinlog.result')
-rw-r--r-- | mysql-test/r/mysqlbinlog.result | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mysql-test/r/mysqlbinlog.result b/mysql-test/r/mysqlbinlog.result index 72d7af2ec4f..c18588d90a7 100644 --- a/mysql-test/r/mysqlbinlog.result +++ b/mysql-test/r/mysqlbinlog.result @@ -16,10 +16,9 @@ flush logs; --- Local -- /*!40019 SET @@session.max_insert_delayed_threads=0*/; use test; - +SET TIMESTAMP=1000000000; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1; SET @@session.sql_mode=0; -SET TIMESTAMP=1000000000; drop table if exists t1,t2; SET TIMESTAMP=1000000000; create table t1 (word varchar(20)); @@ -60,10 +59,10 @@ insert into t1 values ("Alas"); /*!40019 SET @@session.max_insert_delayed_threads=0*/; use test; SET TIMESTAMP=1000000000; -drop table if exists t1,t2; -SET TIMESTAMP=1000000000; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1; SET @@session.sql_mode=0; +drop table if exists t1,t2; +SET TIMESTAMP=1000000000; create table t1 (word varchar(20)); SET TIMESTAMP=1000000000; create table t2 (id int auto_increment not null primary key); |