pgsql: Rename nbtree split REDO routine variables.

Поиск
Список
Период
Сортировка
От Peter Geoghegan
Тема pgsql: Rename nbtree split REDO routine variables.
Дата
Msg-id E1k45cx-00030Q-Pd@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Rename nbtree split REDO routine variables.

Make the nbtree page split REDO routine variable names consistent with
_bt_split() (which handles the original execution of page splits).
These names make the code easier to follow by making the distinction
between the original page and the left half of the split clear.  (The
left half of the split page is a temp page that REDO creates to replace
the origpage contents.)

Also reduce the elevel used when adding a new high key to the temp page
from PANIC to ERROR to be consistent.  We already only raise an ERROR
when data item PageAddItem() temp page calls fail.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3df92bbd1dba98f72e3f005406463b0718193a0f

Modified Files
--------------
src/backend/access/nbtree/nbtxlog.c | 96 ++++++++++++++++++-------------------
1 file changed, 48 insertions(+), 48 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Etsuro Fujita
Дата:
Сообщение: pgsql: Fix yet another issue with step generation in partition pruning.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Support testing of cases where table schemas change after planni