diff options
author | Satya B <satya.bn@sun.com> | 2009-05-19 13:26:49 +0530 |
---|---|---|
committer | Satya B <satya.bn@sun.com> | 2009-05-19 13:26:49 +0530 |
commit | 65eac15004f2f455182dc09e100bacca21afaa36 (patch) | |
tree | 3902cdb62ae39455706db42f55c30201b3c5401f /storage/innobase/dict/dict0dict.c | |
parent | 9854967b92168c4d66661493d6a829c3ebdab1a0 (diff) | |
download | mariadb-git-65eac15004f2f455182dc09e100bacca21afaa36.tar.gz |
Applying InnoDB snashot 5.1-ss5024, part 2. Fix for BUG#44320
BUG#44320 - InnoDB: missing DB_ROLL_PTR in Table Monitor COLUMNS output
Detailed revision comments:
r4976 | marko | 2009-05-13 15:44:54 +0300 (Wed, 13 May 2009) | 6 lines
branches/5.1: Display DB_ROLL_PTR in the COLUMNS section of the
innodb_table_monitor output. It was accidentally omitted due to an
off-by-one loop condition. (Bug #44320)
rb://116 approved by Heikki Tuuri
Diffstat (limited to 'storage/innobase/dict/dict0dict.c')
-rw-r--r-- | storage/innobase/dict/dict0dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/dict/dict0dict.c b/storage/innobase/dict/dict0dict.c index c7a57d6a2b8..0fec2443836 100644 --- a/storage/innobase/dict/dict0dict.c +++ b/storage/innobase/dict/dict0dict.c @@ -3932,7 +3932,7 @@ dict_table_print_low( (ulong) UT_LIST_GET_LEN(table->indexes), (ulong) table->stat_n_rows); - for (i = 0; i + 1 < (ulint) table->n_cols; i++) { + for (i = 0; i < (ulint) table->n_cols; i++) { dict_col_print_low(table, dict_table_get_nth_col(table, i)); fputs("; ", stderr); } |