Get rid of the excess semicolon in planner.c

From: Richard Guo <guofenglinux(at)gmail(dot)com>
To: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Get rid of the excess semicolon in planner.c
Date: 2024-03-05 11:43:21
Message-ID: CAMbWs4-qjotfa7G=5PEOw4LDDDX58MmTwDdpdoU3Quse_BKv1Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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

Attachment Content-Type Size
v1-0001-Get-rid-of-the-excess-semicolon-in-planner.c.patch application/octet-stream 934 bytes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Ranier Vilela 2024-03-05 11:44:15 Re: Avoid is possible a expensive function call (src/backend/utils/adt/varlena.c)
Previous Message Richard Guo 2024-03-05 11:19:41 Re: Eager aggregation, take 3