• unknown's avatar
    Bug #34283 mysqlbinlog leaves tmpfile after termination if binlog contains load data infile · 5e13086b
    unknown authored
    With statement- or mixed-mode logging, "LOAD DATA INFILE" queries
    are written to the binlog using special types of log events.
    When mysqlbinlog reads such events, it re-creates the file in a
    temporary directory with a generated filename and outputs a
    "LOAD DATA INFILE" query where the filename is replaced by the
    generated file. The temporary file is not deleted by mysqlbinlog
    after termination.
    
    To fix the problem, in mixed mode we go to row-based. In SBR, we
    document it to remind user the tmpfile is left in a temporary
    directory.
    
    
    mysql-test/suite/binlog/r/binlog_mixed_load_data.result:
      Test result for BUG#34283.
    mysql-test/suite/binlog/t/binlog_mixed_load_data.test:
      Added the test file to verify that 'load data infile...' statement
      will go to row-based in mixed mode.
    sql/sql_load.cc:
      Added code to go to row-based in mixed mode for
      'load data infile ...' statement
    5e13086b
binlog_mixed_load_data.test 501 Bytes