• Rohit Kalhans's avatar
    Bug#11762667: MYSQLBINLOG IGNORES ERRORS WHILE WRITING OUTPUT · 35d4c18e
    Rohit Kalhans authored
    Problem: mysqlbinlog exits without any error code in case of
    file write error. It is because of the fact that the calls
    to Log_event::print() method does not return a value and the
    thus any error were being ignored.
    
    Resolution: We resolve this problem by checking for the 
    IO_CACHE::error == -1 after every call to Log_event:: print()
    and terminating the further execution.
    35d4c18e
my_write.c 3.23 KB