Commit 60dc7eab authored by sasha@mysql.sashanet.com's avatar sasha@mysql.sashanet.com
Browse files

log_event.h fixed load data infile replication for alpha

parent 3417aa25
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -300,10 +300,10 @@ class Load_log_event: public Log_event
  int get_data_size()
  {
    return table_name_len + 2 + db_len + 2 + fname_len
      + sizeof(thread_id) // thread_id
      + sizeof(exec_time) // exec_time
      + sizeof(skip_lines)
      + sizeof(field_block_len)
      + 4 // thread_id
      + 4 // exec_time
      + 4 // skip_lines
      + 4 // field block len
      + sizeof(sql_ex) + field_block_len + num_fields*sizeof(uchar) ;
      ;
  }