pgsql: postgres_fdw: Avoid sharing list substructure.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема pgsql: postgres_fdw: Avoid sharing list substructure.
Дата
Msg-id E1aXPjU-0005eO-W5@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
postgres_fdw: Avoid sharing list substructure.

list_concat(list_concat(a, b), c) destructively changes both a and b;
to avoid such perils, copy lists of remote_conds before incorporating
them into larger lists via list_concat().

Ashutosh Bapat, per a report from Etsuro Fujita

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/dd077ef832e1ec7f5ba2a706152d22647a3b80f5

Modified Files
--------------
contrib/postgres_fdw/postgres_fdw.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)


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

Предыдущее
От: Tatsuo Ishii
Дата:
Сообщение: pgsql: Fix wording in the Tutorial document.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Cosmetic improvements to group locking.