pgsql: Clean up range-table building in copy.c

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема pgsql: Clean up range-table building in copy.c
Дата
Msg-id E1YGbKl-0000gn-LM@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Clean up range-table building in copy.c

Commit 804b6b6db4dcfc590a468e7be390738f9f7755fb added the build of a
range table in copy.c to initialize the EState es_range_table since it
can be needed in error paths.  Unfortunately, that commit didn't
appreciate that some code paths might end up not initializing the rte
which is used to build the range table.

Fix that and clean up a couple others things along the way- build it
only once and don't explicitly set it on the !is_from path as it
doesn't make any sense there (cstate is palloc0'd, so this isn't an
issue from an initializing standpoint either).

The prior commit went back to 9.0, but this only goes back to 9.1 as
prior to that the range table build happens immediately after building
the RTE and therefore doesn't suffer from this issue.

Pointed out by Robert.

Branch
------
REL9_1_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/88b45aa8fb209176cc8d3224d75b16bb50a5b4dd

Modified Files
--------------
src/backend/commands/copy.c |    9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)


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

Предыдущее
От: Stephen Frost
Дата:
Сообщение: pgsql: Clean up range-table building in copy.c
Следующее
От: Stephen Frost
Дата:
Сообщение: pgsql: Clean up range-table building in copy.c