pgsql: Simplify index tuple descriptor initialization

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Simplify index tuple descriptor initialization
Дата
Msg-id E1g0L6P-0006Yo-H9@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Simplify index tuple descriptor initialization

We have two code paths for initializing the tuple descriptor for a new
index: For a normal index, we copy the tuple descriptor from the table
and reset a number of fields that are not applicable to indexes.  For an
expression index, we make a blank tuple descriptor and fill in the
needed fields based on the provided expressions.  As pg_attribute has
grown over time, the number of fields that we need to reset in the first
case is now bigger than the number of fields we actually want to copy,
so it's sensible to do it the other way around: Make a blank descriptor
and copy just the fields we need.  This also allows more code sharing
between the two branches, and it avoids having to touch this code for
almost every unrelated change to the pg_attribute structure.

Reviewed-by: Arthur Zakirov <a.zakirov@postgrespro.ru>

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e5f1bb92cfa724ba50f5b42a9cd3f8ab544b960a

Modified Files
--------------
src/backend/catalog/index.c | 57 ++++++++++++++++++---------------------------
1 file changed, 23 insertions(+), 34 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Minor fixes for psql tab completion.
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: doc: Update broken links