mirror of
https://github.com/postgres/postgres.git
synced 2026-04-23 23:28:01 -04:00
Use nbtdesc "level" field name consistently.
The "lev" name that appeared in NEWROOT nbtree record desc output was
inconsistent with the symbol name from the underlying C struct. It was
also inconsistent with nbtdesc output for other nearby record types with
similar level fields.
Standardize on "level" to make everything consistent.
Follow-up to commit 1c453cfd.
This commit is contained in:
parent
50547a3fae
commit
2584639653
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ btree_desc(StringInfo buf, XLogReaderState *record)
|
|||
{
|
||||
xl_btree_newroot *xlrec = (xl_btree_newroot *) rec;
|
||||
|
||||
appendStringInfo(buf, "lev: %u", xlrec->level);
|
||||
appendStringInfo(buf, "level: %u", xlrec->level);
|
||||
break;
|
||||
}
|
||||
case XLOG_BTREE_REUSE_PAGE:
|
||||
|
|
|
|||
Loading…
Reference in a new issue