Skip to content

Commit

Permalink
Fixed CORE-3978: Invalid transaction counters may be reported in fire…
Browse files Browse the repository at this point in the history
…bird.log during the sweep.
  • Loading branch information
dyemanov committed Nov 13, 2012
1 parent 123d5b0 commit 4192553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jrd/tra.cpp
Expand Up @@ -3376,7 +3376,7 @@ TraceSweepEvent::TraceSweepEvent(thread_db* tdbb)

gds__log("Sweep is started by %s\n"
"\tDatabase \"%s\" \n"
"\tOIT %lu, OAT %lu, OST %lu, Next %lu",
"\tOIT %"ULONGFORMAT", OAT %"ULONGFORMAT", OST %"ULONGFORMAT", Next %"ULONGFORMAT,
att->att_user->usr_user_name.c_str(),
att->att_filename.c_str(),
m_sweep_info.getOIT(),
Expand Down Expand Up @@ -3465,7 +3465,7 @@ void TraceSweepEvent::report(ntrace_process_state_t state)
{
gds__log("Sweep is finished\n"
"\tDatabase \"%s\" \n"
"\tOIT %lu, OAT %lu, OST %lu, Next %lu",
"\tOIT %"ULONGFORMAT", OAT %"ULONGFORMAT", OST %"ULONGFORMAT", Next %"ULONGFORMAT,
att->att_filename.c_str(),
m_sweep_info.getOIT(),
m_sweep_info.getOAT(),
Expand Down

0 comments on commit 4192553

Please sign in to comment.