Re: fixing pg_ctl with relative paths

Поиск
Список
Период
Сортировка
От Josh Kupershmidt
Тема Re: fixing pg_ctl with relative paths
Дата
Msg-id CAK3UJRHRZQmoFkj860E79rmRm8Y=nCMTz7CZ306FXcwZVT2zew@mail.gmail.com
обсуждение исходный текст
Ответ на fixing pg_ctl with relative paths  (Josh Kupershmidt <schmiddy@gmail.com>)
Ответы Re: fixing pg_ctl with relative paths  (Hari Babu <haribabu.kommi@huawei.com>)
Список pgsql-hackers
On Tue, Jun 25, 2013 at 2:28 AM, Hari Babu <haribabu.kommi@huawei.com> wrote:
> Please find the review of the patch.

Thank you for reviewing!

> Code Review:
> ------------
> +if (orig_post_opts) {
> +        post_opts = strip_datadirs(orig_post_opts);
> +}
>
> No need of "{}" as the only one statement block is present in the if block.

OK.

> +         free(tmp);
>
> The above statement can be moved inside the if (*(trailing_quote + 1) !=
> '\0') {
> where it's exact usage is present.

Right.

> Testing:
> --------
> I tested this feature with different postmaster options and database folder
> names, found no problem.
>
>
> The database folder with quotes present in it is any way having problems
> with pg_ctl.
> I feel the strip_datadirs() function header explanation is providing good
> understanding.
> Overall the patch is good. It makes the pg_ctl restart functionality works
> well.

Thanks for the feedback. Attached is a rebased version of the patch
with the two small issues noted fixed.

Josh

Вложения

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

Предыдущее
От: Josh Berkus
Дата:
Сообщение: Re: ALTER SYSTEM SET command to change postgresql.conf parameters (RE: Proposal for Allow postgresql.conf values to be changed via SQL [review])
Следующее
От: Steve Singer
Дата:
Сообщение: Re: [PATCH] Fix conversion for Decimal arguments in plpython functions