diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-02-25 22:35:33 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-02-25 22:35:33 +0200 |
commit | a6e56b05382a83e369e60e9c6852ae14376b5d54 (patch) | |
tree | 8d46d49add3eee84441bb2f737733ea9444c6cce /innobase/trx/trx0roll.c | |
parent | 3d8aed6d83096102d8273bd238cc186e0fbbf0cb (diff) | |
download | mariadb-git-a6e56b05382a83e369e60e9c6852ae14376b5d54.tar.gz |
trx0undo.h, trx0undo.c, trx0trx.c, trx0roll.c:
Make InnoDB-5.0.3 to process log records of 4.1 undo log header create and reuse just like in 4.1; storing XID to the start of the undo log is a separately logged operation; this conforms to Rule 3 of InnoDB redo logging
innobase/trx/trx0roll.c:
Make InnoDB-5.0.3 to process log records of 4.1 undo log header create and reuse just like in 4.1; storing XID to the start of the undo log is a separately logged operation; this conforms to Rule 3 of InnoDB redo logging
innobase/trx/trx0trx.c:
Make InnoDB-5.0.3 to process log records of 4.1 undo log header create and reuse just like in 4.1; storing XID to the start of the undo log is a separately logged operation; this conforms to Rule 3 of InnoDB redo logging
innobase/trx/trx0undo.c:
Make InnoDB-5.0.3 to process log records of 4.1 undo log header create and reuse just like in 4.1; storing XID to the start of the undo log is a separately logged operation; this conforms to Rule 3 of InnoDB redo logging
innobase/include/trx0undo.h:
Make InnoDB-5.0.3 to process log records of 4.1 undo log header create and reuse just like in 4.1; storing XID to the start of the undo log is a separately logged operation; this conforms to Rule 3 of InnoDB redo logging
Diffstat (limited to 'innobase/trx/trx0roll.c')
-rw-r--r-- | innobase/trx/trx0roll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/trx/trx0roll.c b/innobase/trx/trx0roll.c index e57057de7ff..559c2cb5128 100644 --- a/innobase/trx/trx0roll.c +++ b/innobase/trx/trx0roll.c @@ -950,7 +950,7 @@ try_again: if (progress_pct != trx_roll_progress_printed_pct) { if (trx_roll_progress_printed_pct == 0) { fprintf(stderr, -"\nInnoDB: Progress in percents: %lu\n", (ulong) progress_pct); +"\nInnoDB: Progress in percents: %lu", (ulong) progress_pct); } else { fprintf(stderr, " %lu", (ulong) progress_pct); |