Обсуждение: Get rid of the excess semicolon in planner.c

Поиск
Список
Период
Сортировка

Get rid of the excess semicolon in planner.c

От
Richard Guo
Дата:
I think this is a typo introduced in 0452b461b.

 +    root->processed_groupClause = list_copy(parse->groupClause);;

The extra empty statement is harmless in most times, but I still think
it would be better to get rid of it.

Attached is a trivial patch to do that.

Thanks
Richard
Вложения

Re: Get rid of the excess semicolon in planner.c

От
David Rowley
Дата:
On Wed, 6 Mar 2024 at 00:43, Richard Guo <guofenglinux@gmail.com> wrote:
>
> I think this is a typo introduced in 0452b461b.
>
>  +    root->processed_groupClause = list_copy(parse->groupClause);;

"git grep -E ";;$" -- *.c *.h" tell me it's the only one.

Pushed.

David



Re: Get rid of the excess semicolon in planner.c

От
Richard Guo
Дата:

On Wed, Mar 6, 2024 at 6:00 AM David Rowley <dgrowleyml@gmail.com> wrote:
On Wed, 6 Mar 2024 at 00:43, Richard Guo <guofenglinux@gmail.com> wrote:
>
> I think this is a typo introduced in 0452b461b.
>
>  +    root->processed_groupClause = list_copy(parse->groupClause);;

"git grep -E ";;$" -- *.c *.h" tell me it's the only one.

Pushed.

Thanks for checking and pushing.

Thanks
Richard