mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
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
This commit is contained in:
parent
1bf3bcbc99
commit
ca11e2036b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue