Thread
Commits
-
Change coding pattern for CURL_IGNORE_DEPRECATION()
- 78aae2983091 19 (unreleased) landed
- 3a438e44d969 18.2 landed
-
CURL_IGNORE_DEPRECATION
Álvaro Herrera <alvherre@kurilemu.de> — 2025-11-11T11:41:25Z
Hackers, I just noticed that we have some ad-hoc hacks for the CURL_IGNORE_DEPRECATION macro in the pgindent Perl script, which I find a bit uncomfortable. Given that we use that macro in a single place, what do you think about removing that and making a more surgical intervention to fix pgindent problem with it? I propose the attached. For context: in curl, that macro is defined like this #define CURL_IGNORE_DEPRECATION(statements) \ _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") \ statements \ _Pragma("GCC diagnostic pop") (with #ifdef guards and whatnot). Because it has a _Pragma after the statements argument, any uses of this macro must have a terminating semicolon, which pgindent does not like. (It's also IMO rather C-unlike). So my approach here is to add another macro to insert that semicolon where it's needed. Of course, there's nothing we can do with CURL_IGNORE_DEPRECATION() itself, given that it's upstream from us. Thoughts? -- Álvaro Herrera PostgreSQL Developer — https://www.EnterpriseDB.com/ “Cuando no hay humildad las personas se degradan” (A. Christie) -
Re: CURL_IGNORE_DEPRECATION
Andrew Dunstan <andrew@dunslane.net> — 2025-11-11T13:14:01Z
On 2025-11-11 Tu 6:41 AM, Álvaro Herrera wrote: > Hackers, > > I just noticed that we have some ad-hoc hacks for the > CURL_IGNORE_DEPRECATION macro in the pgindent Perl script, which I find > a bit uncomfortable. Given that we use that macro in a single place, > what do you think about removing that and making a more surgical > intervention to fix pgindent problem with it? I propose the attached. > > For context: in curl, that macro is defined like this > > #define CURL_IGNORE_DEPRECATION(statements) \ > _Pragma("GCC diagnostic push") \ > _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") \ > statements \ > _Pragma("GCC diagnostic pop") > > (with #ifdef guards and whatnot). Because it has a _Pragma after the > statements argument, any uses of this macro must have a terminating > semicolon, which pgindent does not like. (It's also IMO rather > C-unlike). So my approach here is to add another macro to insert that > semicolon where it's needed. Of course, there's nothing we can do with > CURL_IGNORE_DEPRECATION() itself, given that it's upstream from us. > > Thoughts? > Looks reasonable. The regex in pgindent is fairly impenetrable, so getting rid of it would be nice. cheers andrew -- Andrew Dunstan EDB: https://www.enterprisedb.com -
Re: CURL_IGNORE_DEPRECATION
Daniel Gustafsson <daniel@yesql.se> — 2025-11-11T14:04:12Z
> On 11 Nov 2025, at 12:41, Álvaro Herrera <alvherre@kurilemu.de> wrote: > Given that we use that macro in a single place, > what do you think about removing that and making a more surgical > intervention to fix pgindent problem with it? I propose the attached. This proposal is a better solution than what was committed, +1. > Of course, there's nothing we can do with > CURL_IGNORE_DEPRECATION() itself, given that it's upstream from us. Yup, sorry about that. -- Daniel Gustafsson
-
Re: CURL_IGNORE_DEPRECATION
Tom Lane <tgl@sss.pgh.pa.us> — 2025-11-11T15:04:08Z
Daniel Gustafsson <daniel@yesql.se> writes: >> On 11 Nov 2025, at 12:41, Álvaro Herrera <alvherre@kurilemu.de> wrote: >> Given that we use that macro in a single place, >> what do you think about removing that and making a more surgical >> intervention to fix pgindent problem with it? I propose the attached. > This proposal is a better solution than what was committed, +1. +1 regards, tom lane
-
Re: CURL_IGNORE_DEPRECATION
Álvaro Herrera <alvherre@kurilemu.de> — 2025-11-12T11:36:49Z
On 2025-Nov-11, Tom Lane wrote: > Daniel Gustafsson <daniel@yesql.se> writes: > > This proposal is a better solution than what was committed, +1. > > +1 Thanks all for looking -- pushed. -- Álvaro Herrera PostgreSQL Developer — https://www.EnterpriseDB.com/
-
Re: CURL_IGNORE_DEPRECATION
Jacob Champion <jacob.champion@enterprisedb.com> — 2025-11-12T16:35:58Z
On Wed, Nov 12, 2025 at 3:36 AM Álvaro Herrera <alvherre@kurilemu.de> wrote: > Thanks all for looking -- pushed. Slightly late to the party, but thanks! This is much nicer. --Jacob