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

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема pgsql: Clean up range-table building in copy.c
Дата
Msg-id E1YGbKl-0000gl-LH@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_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/8e36028fcc98335ec34f5c6a742432e47db7ebfa

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


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

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