Re: copyParamList

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: copyParamList
Дата
Msg-id CA+TgmobEPjfRCP0=wG-SEZ8mebgB-=-pkFyNtrYgcD31Tx=+VQ@mail.gmail.com
обсуждение исходный текст
Ответ на copyParamList  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Ответы Re: copyParamList  (Amit Kapila <amit.kapila16@gmail.com>)
Список pgsql-hackers
On Fri, May 27, 2016 at 6:07 PM, Andrew Gierth
<andrew@tao11.riddles.org.uk> wrote:
> copyParamList does not respect from->paramMask, in what looks to me like
> an obvious oversight:
>
>     retval->paramMask = NULL;
> [...]
>         /* Ignore parameters we don't need, to save cycles and space. */
>         if (retval->paramMask != NULL &&
>             !bms_is_member(i, retval->paramMask))
>
> retval->paramMask is never set to anything not NULL in this function,
> so surely that should either be initializing it to from->paramMask, or
> checking from->paramMask in the conditional?

Oh, dear.  I think you are right.  I'm kind of surprised this didn't
provoke a test failure somewhere.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



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

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: Re: what to revert
Следующее
От: Josh berkus
Дата:
Сообщение: Re: Rename max_parallel_degree?