Commit 6aacc641 authored by mkindahl@dl145h.mysql.com's avatar mkindahl@dl145h.mysql.com

Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge

into  dl145h.mysql.com:/data0/mkindahl/mysql-5.1-rpl-merge
parents 5367b138 10b194d2
--require r/have_local_infile.require
disable_query_log;
show variables like 'local_infile';
enable_query_log;
Variable_name Value
local_infile ON
...@@ -561,7 +561,6 @@ set @a:= mysqltest2.f1(); ...@@ -561,7 +561,6 @@ set @a:= mysqltest2.f1();
sync_slave_with_master; sync_slave_with_master;
connection master; connection master;
# Final inspection which verifies how all statements of this test file # Final inspection which verifies how all statements of this test file
# were written to the binary log. # were written to the binary log.
--replace_column 2 # 5 # --replace_column 2 # 5 #
...@@ -579,7 +578,7 @@ set global log_bin_trust_function_creators=0; ...@@ -579,7 +578,7 @@ set global log_bin_trust_function_creators=0;
# Clean up # Clean up
drop database mysqltest; drop database mysqltest;
drop database mysqltest2; drop database mysqltest2;
sync_slave_with_master;
--echo End of 5.0 tests --echo End of 5.0 tests
--echo End of 5.1 tests --echo End of 5.1 tests
...@@ -1595,7 +1595,7 @@ int log_loaded_block(IO_CACHE* file) ...@@ -1595,7 +1595,7 @@ int log_loaded_block(IO_CACHE* file)
LOAD_FILE_INFO *lf_info; LOAD_FILE_INFO *lf_info;
uint block_len; uint block_len;
/* buffer contains position where we started last read */ /* buffer contains position where we started last read */
uchar* buffer= my_b_get_buffer_start(file); uchar* buffer= (uchar*) my_b_get_buffer_start(file);
uint max_event_size= current_thd->variables.max_allowed_packet; uint max_event_size= current_thd->variables.max_allowed_packet;
lf_info= (LOAD_FILE_INFO*) file->arg; lf_info= (LOAD_FILE_INFO*) file->arg;
if (lf_info->thd->current_stmt_binlog_row_based) if (lf_info->thd->current_stmt_binlog_row_based)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment