1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

bug#30435

changes due to non-determinism in value of read_buffer_size.


mysql-test/r/rpl_loaddata_map.result:
  results changed
mysql-test/t/rpl_loaddata_map.test:
  showing only the fact that the buffer size is larger than the packet size.
mysql-test/std_data/bug30435_10k_items.txt:
  data for bug#30435 regression testing
mysql-test/std_data/bug30435_5k.txt:
  data for bug#30435 regression testing
This commit is contained in:
unknown
2007-12-23 11:18:46 +02:00
parent ff84f4047e
commit 46bfdbcac0
4 changed files with 15004 additions and 8 deletions

View File

@ -26,8 +26,7 @@ flush logs;
connection master;
create table t2 (id int not null primary key auto_increment);
show variables like 'max_allowed_packet' /* 8K */;
show variables like 'read_buffer_size' /* 9K */;
select @@session.read_buffer_size - @@session.max_allowed_packet > 0 ;
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
eval load data infile '$MYSQLTEST_VARDIR/tmp/bug30435_5k.txt' into table t2;