pgsql: Don't bother copying empty support arrays in a zero-column Merge

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Don't bother copying empty support arrays in a zero-column Merge
Дата
Msg-id E1SHGjE-0006PG-P4@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Don't bother copying empty support arrays in a zero-column MergeJoin.

The case could not arise when this code was originally written, but it can
now (since we made zero-column MergeJoins work for the benefit of FULL JOIN
ON TRUE).  I don't think there is any actual bug here, but we might as well
treat it consistently with other uses of COPY_POINTER_FIELD().  Per comment
from Ashutosh Bapat.

Branch
------
master

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

Modified Files
--------------
src/backend/nodes/copyfuncs.c |   11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Save a few cycles while creating "sticky" entries in pg_stat_sta
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix an Assert that turns out to be reachable after all.