summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl_loaddata_map.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/rpl_loaddata_map.result')
-rw-r--r--mysql-test/r/rpl_loaddata_map.result9
1 files changed, 3 insertions, 6 deletions
diff --git a/mysql-test/r/rpl_loaddata_map.result b/mysql-test/r/rpl_loaddata_map.result
index acec863fd20..9bb02f5db1b 100644
--- a/mysql-test/r/rpl_loaddata_map.result
+++ b/mysql-test/r/rpl_loaddata_map.result
@@ -5,12 +5,9 @@ reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
create table t2 (id int not null primary key auto_increment);
-show variables like 'max_allowed_packet' /* 8K */;
-Variable_name Value
-max_allowed_packet 7168
-show variables like 'read_buffer_size' /* 9K */;
-Variable_name Value
-read_buffer_size 8228
+select @@session.read_buffer_size - @@session.max_allowed_packet > 0 ;
+@@session.read_buffer_size - @@session.max_allowed_packet > 0
+1
load data infile 'MYSQLTEST_VARDIR/tmp/bug30435_5k.txt' into table t2;
select count(*) from t2 /* 5 000 */;
count(*)