Skip to content
  • Karthik Kamath's avatar
    5976f3fa
    BUG#25209512: CURRENT_TIMESTAMP PRODUCES ZEROS IN TRIGGER · 5976f3fa
    Karthik Kamath authored
    Post push fix:
    Valgrind reported errors because INSERT and LOAD operations
    compared the old data record (TABLE::record[1]) and the
    new data record (TABLE::record[0]). New data record is
    initialized only for UPDATE operations.
    
    A check is now introduced to ensure only UPDATE operations
    compare records.
    5976f3fa
    BUG#25209512: CURRENT_TIMESTAMP PRODUCES ZEROS IN TRIGGER
    Karthik Kamath authored
    Post push fix:
    Valgrind reported errors because INSERT and LOAD operations
    compared the old data record (TABLE::record[1]) and the
    new data record (TABLE::record[0]). New data record is
    initialized only for UPDATE operations.
    
    A check is now introduced to ensure only UPDATE operations
    compare records.
Loading