1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Replication: Optimize away string.append

Fixed problem with replication LOAD DATA INFILE when using  --old-rpl-compat
Fixed rpl_temporary test


mysql-test/r/rpl_temporary.result:
  Fixed rpl_temporary test
mysql-test/t/rpl_temporary.test:
  Fixed rpl_temporary test
sql/log_event.cc:
  Replication: Optimize away string.append
  Fixed problem with replication LOAD DATA INFILE when using  --old-rpl-compat
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
This commit is contained in:
unknown
2003-01-17 16:39:29 +04:00
parent ef62b4c948
commit b66cf8516e
4 changed files with 142 additions and 112 deletions

View File

@ -3,6 +3,8 @@ source include/master-slave.inc;
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
let $VERSION=`select version()`;
--disable_warnings
drop table if exists t1,t2;
--enable_warnings
@ -38,6 +40,7 @@ drop temporary table t3;
select * from t2;
--replace_result $VERSION VERSION
show binlog events;
drop table t1, t2;