agora inbox for [email protected]
help / color / mirror / Atom feedMore pgindent follies
280+ messages / 4 participants
[nested] [flat]
* More pgindent follies
@ 2001-05-20 21:03 Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
0 siblings, 1 reply; 280+ messages in thread
From: Tom Lane @ 2001-05-20 21:03 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: pgsql-hackers
As long as you're fixing bugs in pgindent, here are some more follies
exhibited by the most recent pgindent run. Some of these bugs have
been there for awhile, but at least one (the removal of space before
a same-line comment) seems to be new as of the most recent run.
The examples are all taken from
$ cd .../src/backend/utils/adt/
$ cvs diff -c -r1.85 -r1.86 selfuncs.c
but there are many similar cases elsewhere.
1. I can sort of understand inserting space before an #ifdef (though I do
not agree with it), but why before #endif? Why does the first example
insert a blank line *only* before the #endif and not its matching #if?
If you're trying to set off the #if block from surrounding code, seems
like a blank line *after* the #endif would help, not one before. But
none of the here-inserted blank lines seem to me to improve readability;
I'd vote for not making any such changes.
***************
*** 648,653 ****
--- 653,659 ----
{
#ifdef NOT_USED /* see neqjoinsel() before removing me! */
Oid opid = PG_GETARG_OID(0);
+
#endif
Oid relid1 = PG_GETARG_OID(1);
AttrNumber attno1 = PG_GETARG_INT16(2);
***************
*** 1078,1087 ****
--- 1091,1102 ----
convert_string_datum(Datum value, Oid typid)
{
char *val;
+
#ifdef USE_LOCALE
char *xfrmstr;
size_t xfrmsize;
size_t xfrmlen;
+
#endif
switch (typid)
***************
2. Here are two examples of a long-standing bug: pgindent frequently
(but not always) mis-indents the first 'case' line(s) of a switch.
I don't agree with its indentation of block comments between case
entries, either.
***************
*** 845,892 ****
switch (valuetypid)
{
! /*
! * Built-in numeric types
! */
! case BOOLOID:
! case INT2OID:
! case INT4OID:
! case INT8OID:
! case FLOAT4OID:
! case FLOAT8OID:
! case NUMERICOID:
! case OIDOID:
! case REGPROCOID:
*scaledvalue = convert_numeric_to_scalar(value, valuetypid);
*scaledlobound = convert_numeric_to_scalar(lobound, boundstypid);
*scaledhibound = convert_numeric_to_scalar(hibound, boundstypid);
return true;
! /*
! * Built-in string types
! */
case CHAROID:
case BPCHAROID:
case VARCHAROID:
--- 851,898 ----
switch (valuetypid)
{
! /*
! * Built-in numeric types
! */
! case BOOLOID:
! case INT2OID:
! case INT4OID:
! case INT8OID:
! case FLOAT4OID:
! case FLOAT8OID:
! case NUMERICOID:
! case OIDOID:
! case REGPROCOID:
*scaledvalue = convert_numeric_to_scalar(value, valuetypid);
*scaledlobound = convert_numeric_to_scalar(lobound, boundstypid);
*scaledhibound = convert_numeric_to_scalar(hibound, boundstypid);
return true;
! /*
! * Built-in string types
! */
case CHAROID:
case BPCHAROID:
case VARCHAROID:
***************
*** 911,917 ****
{
switch (typid)
{
! case BOOLOID:
return (double) DatumGetBool(value);
case INT2OID:
return (double) DatumGetInt16(value);
--- 917,923 ----
{
switch (typid)
{
! case BOOLOID:
return (double) DatumGetBool(value);
case INT2OID:
return (double) DatumGetInt16(value);
***************
3. This is new misbehavior as of the last pgindent run: whitespace
between a statement and a comment on the same line is sometimes removed.
***************
*** 1120,1126 ****
#ifdef USE_LOCALE
/* Guess that transformed string is not much bigger than original */
! xfrmsize = strlen(val) + 32; /* arbitrary pad value here... */
xfrmstr = (char *) palloc(xfrmsize);
xfrmlen = strxfrm(xfrmstr, val, xfrmsize);
if (xfrmlen >= xfrmsize)
--- 1137,1143 ----
#ifdef USE_LOCALE
/* Guess that transformed string is not much bigger than original */
! xfrmsize = strlen(val) + 32;/* arbitrary pad value here... */
xfrmstr = (char *) palloc(xfrmsize);
xfrmlen = strxfrm(xfrmstr, val, xfrmsize);
if (xfrmlen >= xfrmsize)
***************
4. This breaking of a comment attached to a #define scares me.
Apparently gcc still thinks the comment is valid, but it seems to me
that this is making not-very-portable assumptions about the behavior of
the preprocessor. I always thought that you needed to use backslashes
to continue a preprocessor command onto the next line reliably.
***************
*** 1691,1705 ****
#define FIXED_CHAR_SEL 0.04 /* about 1/25 */
#define CHAR_RANGE_SEL 0.25
! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match end-of-string */
#define FULL_WILDCARD_SEL 5.0
#define PARTIAL_WILDCARD_SEL 2.0
--- 1718,1733 ----
#define FIXED_CHAR_SEL 0.04 /* about 1/25 */
#define CHAR_RANGE_SEL 0.25
! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match
! * end-of-string */
#define FULL_WILDCARD_SEL 5.0
#define PARTIAL_WILDCARD_SEL 2.0
***************
5. Here's an interesting one: why was the "return" line misindented?
I don't particularly agree with the handling of the comments on the
#else and #endif lines either... they're not even mutually consistent,
let alone stylistically good.
***************
*** 1904,1912 ****
else
result = false;
return (bool) result;
! #else /* not USE_LOCALE */
! return true; /* We must be in C locale, which is OK */
! #endif /* USE_LOCALE */
}
/*
--- 1935,1943 ----
else
result = false;
return (bool) result;
! #else /* not USE_LOCALE */
! return true; /* We must be in C locale, which is OK */
! #endif /* USE_LOCALE */
}
/*
***************
regards, tom lane
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
@ 2001-05-22 01:22 ` Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
0 siblings, 1 reply; 280+ messages in thread
From: Bruce Momjian @ 2001-05-22 01:22 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: pgsql-hackers
OK, I have fixes for all of these. BSD indent clearly has some bugs,
and ironically, the indent source code is quite ugly. The best way to
work around them is with pre/post processing, which we already do.
I just checked FreeBSD and NetBSD and they don't seem to have added too
much to BSD indent it since it left Berkeley. They have upped the
keyword limit to 1000, but that is still too small for us, and I don't
see any other major work being done.
Looks like GNU indent development was picked up in 1999 again, so it may
be worth another look:
-r--r--r-- 1 34 21 160411 Feb 3 1994 indent-1.9.1.tar.gz
-r--r--r-- 1 34 21 143307 May 27 1999 indent-1.10.0.tar.gz
-r--r--r-- 1 34 21 183160 Jul 4 1999 indent-2.1.0.tar.gz
-r--r--r-- 1 34 21 183999 Jul 15 1999 indent-2.1.1.tar.gz
-r--r--r-- 1 34 21 186287 Jul 24 1999 indent-2.2.0.tar.gz
-r--r--r-- 1 34 21 191303 Sep 25 1999 indent-2.2.1.tar.gz
-r--r--r-- 1 34 21 192872 Sep 28 1999 indent-2.2.2.tar.gz
-r--r--r-- 1 34 21 198319 Oct 1 1999 indent-2.2.3.tar.gz
-r--r--r-- 1 34 21 197332 Nov 4 1999 indent-2.2.4.tar.gz
-r--r--r-- 1 34 21 203764 Jan 16 2000 indent-2.2.5.tar.gz
-r--r--r-- 1 34 21 222510 Nov 17 2000 indent-2.2.6.tar.gz
OK, here are my comments.
> As long as you're fixing bugs in pgindent, here are some more follies
> exhibited by the most recent pgindent run. Some of these bugs have
> been there for awhile, but at least one (the removal of space before
> a same-line comment) seems to be new as of the most recent run.
>
Glad to fix these. I hacked together pgindent just to match what I
thought looked good, so if people have things that look bad, let me
know.
> The examples are all taken from
>
> $ cd .../src/backend/utils/adt/
> $ cvs diff -c -r1.85 -r1.86 selfuncs.c
Great that you found them all in one file, or bad that they all existed
in one file. :-)
> but there are many similar cases elsewhere.
>
> 1. I can sort of understand inserting space before an #ifdef (though I do
> not agree with it), but why before #endif? Why does the first example
> insert a blank line *only* before the #endif and not its matching #if?
> If you're trying to set off the #if block from surrounding code, seems
> like a blank line *after* the #endif would help, not one before. But
> none of the here-inserted blank lines seem to me to improve readability;
> I'd vote for not making any such changes.
>
> ***************
> *** 648,653 ****
> --- 653,659 ----
> {
> #ifdef NOT_USED /* see neqjoinsel() before removing me! */
> Oid opid = PG_GETARG_OID(0);
> +
> #endif
> Oid relid1 = PG_GETARG_OID(1);
> AttrNumber attno1 = PG_GETARG_INT16(2);
> ***************
> *** 1078,1087 ****
> --- 1091,1102 ----
> convert_string_datum(Datum value, Oid typid)
> {
> char *val;
> +
> #ifdef USE_LOCALE
> char *xfrmstr;
> size_t xfrmsize;
> size_t xfrmlen;
> +
> #endif
>
> switch (typid)
> ***************
Fixed with 'awk' script to remove blank line above #endif.
>
> 2. Here are two examples of a long-standing bug: pgindent frequently
> (but not always) mis-indents the first 'case' line(s) of a switch.
> I don't agree with its indentation of block comments between case
> entries, either.
>
> ***************
> *** 845,892 ****
> switch (valuetypid)
> {
>
> ! /*
> ! * Built-in numeric types
> ! */
> ! case BOOLOID:
> ! case INT2OID:
> ! case INT4OID:
> ! case INT8OID:
> ! case FLOAT4OID:
> ! case FLOAT8OID:
> ! case NUMERICOID:
> ! case OIDOID:
> ! case REGPROCOID:
> *scaledvalue = convert_numeric_to_scalar(value, valuetypid);
> *scaledlobound = convert_numeric_to_scalar(lobound, boundstypid);
> *scaledhibound = convert_numeric_to_scalar(hibound, boundstypid);
> return true;
>
> ! /*
> ! * Built-in string types
> ! */
> case CHAROID:
> case BPCHAROID:
> case VARCHAROID:
> --- 851,898 ----
> switch (valuetypid)
> {
>
> ! /*
> ! * Built-in numeric types
> ! */
> ! case BOOLOID:
> ! case INT2OID:
> ! case INT4OID:
> ! case INT8OID:
> ! case FLOAT4OID:
> ! case FLOAT8OID:
> ! case NUMERICOID:
> ! case OIDOID:
> ! case REGPROCOID:
> *scaledvalue = convert_numeric_to_scalar(value, valuetypid);
> *scaledlobound = convert_numeric_to_scalar(lobound, boundstypid);
> *scaledhibound = convert_numeric_to_scalar(hibound, boundstypid);
> return true;
>
> ! /*
> ! * Built-in string types
> ! */
> case CHAROID:
> case BPCHAROID:
> case VARCHAROID:
> ***************
> *** 911,917 ****
> {
> switch (typid)
> {
> ! case BOOLOID:
> return (double) DatumGetBool(value);
> case INT2OID:
> return (double) DatumGetInt16(value);
> --- 917,923 ----
> {
> switch (typid)
> {
> ! case BOOLOID:
> return (double) DatumGetBool(value);
> case INT2OID:
> return (double) DatumGetInt16(value);
> ***************
This is actually caused by functions that do not define local variables
but start with switch:
int
func(int x)
{
switch (x)
{
case 1:
case 2:
in these cases, case 1 and case2 get indented too far. They actually
get indented as though they were variable names, which is clearly wrong.
BSD indent has a bug in such cases, so the trick was to add:
int pgindent_func_no_var_fix;
before indent is run, and after remove it and an optional blank line if
it was the only variable definition.
>
> 3. This is new misbehavior as of the last pgindent run: whitespace
> between a statement and a comment on the same line is sometimes removed.
>
> ***************
> *** 1120,1126 ****
>
> #ifdef USE_LOCALE
> /* Guess that transformed string is not much bigger than original */
> ! xfrmsize = strlen(val) + 32; /* arbitrary pad value here... */
> xfrmstr = (char *) palloc(xfrmsize);
> xfrmlen = strxfrm(xfrmstr, val, xfrmsize);
> if (xfrmlen >= xfrmsize)
> --- 1137,1143 ----
>
> #ifdef USE_LOCALE
> /* Guess that transformed string is not much bigger than original */
> ! xfrmsize = strlen(val) + 32;/* arbitrary pad value here... */
> xfrmstr = (char *) palloc(xfrmsize);
> xfrmlen = strxfrm(xfrmstr, val, xfrmsize);
> if (xfrmlen >= xfrmsize)
> ***************
This is happening because it has landed on a tab stop and isn't adding
another one. I have added a 'sed' line to properly push these to the
next tab stop.
>
> 4. This breaking of a comment attached to a #define scares me.
> Apparently gcc still thinks the comment is valid, but it seems to me
> that this is making not-very-portable assumptions about the behavior of
> the preprocessor. I always thought that you needed to use backslashes
> to continue a preprocessor command onto the next line reliably.
>
> ***************
> *** 1691,1705 ****
>
> #define FIXED_CHAR_SEL 0.04 /* about 1/25 */
> #define CHAR_RANGE_SEL 0.25
> ! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match end-of-string */
> #define FULL_WILDCARD_SEL 5.0
> #define PARTIAL_WILDCARD_SEL 2.0
>
> --- 1718,1733 ----
>
> #define FIXED_CHAR_SEL 0.04 /* about 1/25 */
> #define CHAR_RANGE_SEL 0.25
> ! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match
> ! * end-of-string */
> #define FULL_WILDCARD_SEL 5.0
> #define PARTIAL_WILDCARD_SEL 2.0
>
> ***************
I don't see the problem here. My assumption is that the comment is not
part of the define, right?
>
> 5. Here's an interesting one: why was the "return" line misindented?
> I don't particularly agree with the handling of the comments on the
> #else and #endif lines either... they're not even mutually consistent,
> let alone stylistically good.
>
> ***************
> *** 1904,1912 ****
> else
> result = false;
> return (bool) result;
> ! #else /* not USE_LOCALE */
> ! return true; /* We must be in C locale, which is OK */
> ! #endif /* USE_LOCALE */
> }
>
> /*
> --- 1935,1943 ----
> else
> result = false;
> return (bool) result;
> ! #else /* not USE_LOCALE */
> ! return true; /* We must be in C locale, which is OK */
> ! #endif /* USE_LOCALE */
> }
>
> /*
> ***************
Same cause as #2 (switch/case indent). Fixed.
I will cvs commit the pgindent changes, and send a diff of selfuncs.c to
patches so people can see the fixes. Fixing the entire tree will have
to wait for 7.2 beta.
--
Bruce Momjian | http://candle.pha.pa.us
[email protected] | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
@ 2001-05-23 13:05 ` Tom Lane <[email protected]>
2001-05-23 15:58 ` Re: More pgindent follies Bruce Momjian <[email protected]>
0 siblings, 1 reply; 280+ messages in thread
From: Tom Lane @ 2001-05-23 13:05 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: pgsql-hackers
Bruce Momjian <[email protected]> writes:
>> 4. This breaking of a comment attached to a #define scares me.
>>
>> ***************
>> *** 1691,1705 ****
>>
>> #define FIXED_CHAR_SEL 0.04 /* about 1/25 */
>> #define CHAR_RANGE_SEL 0.25
>> ! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match end-of-string */
>> #define FULL_WILDCARD_SEL 5.0
>> #define PARTIAL_WILDCARD_SEL 2.0
>>
>> --- 1718,1733 ----
>>
>> #define FIXED_CHAR_SEL 0.04 /* about 1/25 */
>> #define CHAR_RANGE_SEL 0.25
>> ! #define ANY_CHAR_SEL 0.9 /* not 1, since it won't match
>> ! * end-of-string */
>> #define FULL_WILDCARD_SEL 5.0
>> #define PARTIAL_WILDCARD_SEL 2.0
>>
>> ***************
> I don't see the problem here. My assumption is that the comment is not
> part of the define, right?
Well, that's the question. ANSI C requires comments to be replaced by
whitespace before preprocessor commands are detected/executed, but there
was an awful lot of variation in preprocessor behavior before ANSI.
I suspect there are still preprocessors out there that might misbehave
on this input --- for example, by leaving the text "* end-of-string */"
present in the preprocessor output. Now we still go to considerable
lengths to support not-quite-ANSI preprocessors. I don't like the idea
that all the work done by configure and c.h in that direction might be
wasted because of pgindent carelessness.
regards, tom lane
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
@ 2001-05-23 15:58 ` Bruce Momjian <[email protected]>
2001-05-23 19:45 ` Re: More pgindent follies Tom Lane <[email protected]>
2001-05-23 21:21 ` Re: More pgindent follies Nathan Myers <[email protected]>
0 siblings, 2 replies; 280+ messages in thread
From: Bruce Momjian @ 2001-05-23 15:58 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: pgsql-hackers
> > I don't see the problem here. My assumption is that the comment is not
> > part of the define, right?
>
> Well, that's the question. ANSI C requires comments to be replaced by
> whitespace before preprocessor commands are detected/executed, but there
> was an awful lot of variation in preprocessor behavior before ANSI.
> I suspect there are still preprocessors out there that might misbehave
> on this input --- for example, by leaving the text "* end-of-string */"
> present in the preprocessor output. Now we still go to considerable
> lengths to support not-quite-ANSI preprocessors. I don't like the idea
> that all the work done by configure and c.h in that direction might be
> wasted because of pgindent carelessness.
I agree, but in a certain sense, we would have found those compilers
already. This is not new behavour as far as I know, and clearly this
would throw a compiler error.
--
Bruce Momjian | http://candle.pha.pa.us
[email protected] | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
2001-05-23 15:58 ` Re: More pgindent follies Bruce Momjian <[email protected]>
@ 2001-05-23 19:45 ` Tom Lane <[email protected]>
1 sibling, 0 replies; 280+ messages in thread
From: Tom Lane @ 2001-05-23 19:45 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: pgsql-hackers
Bruce Momjian <[email protected]> writes:
> I agree, but in a certain sense, we would have found those compilers
> already. This is not new behavour as far as I know, and clearly this
> would throw a compiler error.
[ Digs around ... ] OK, you're right, it's not new behavior; we have
instances of similarly-split comments at least back to REL6_5. I guess
my fears of portability problems are unfounded.
regards, tom lane
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
2001-05-23 15:58 ` Re: More pgindent follies Bruce Momjian <[email protected]>
@ 2001-05-23 21:21 ` Nathan Myers <[email protected]>
2001-05-24 04:04 ` Re: More pgindent follies Tom Lane <[email protected]>
1 sibling, 1 reply; 280+ messages in thread
From: Nathan Myers @ 2001-05-23 21:21 UTC (permalink / raw)
To: pgsql-hackers
On Wed, May 23, 2001 at 11:58:51AM -0400, Bruce Momjian wrote:
> > > I don't see the problem here. My assumption is that the comment is not
> > > part of the define, right?
> >
> > Well, that's the question. ANSI C requires comments to be replaced by
> > whitespace before preprocessor commands are detected/executed, but there
> > was an awful lot of variation in preprocessor behavior before ANSI.
> > I suspect there are still preprocessors out there that might misbehave
> > on this input --- for example, by leaving the text "* end-of-string */"
> > present in the preprocessor output. Now we still go to considerable
> > lengths to support not-quite-ANSI preprocessors. I don't like the idea
> > that all the work done by configure and c.h in that direction might be
> > wasted because of pgindent carelessness.
>
> I agree, but in a certain sense, we would have found those compilers
> already. This is not new behavour as far as I know, and clearly this
> would throw a compiler error.
This is good news!
Maybe this process can be formalized. That is, each official release
migh contain a source file with various "modern" constructs which we
suspect might break old compilers.
A comment block at the top requests that any breakage be reported.
A configure option would allow a user to avoid compiling it, and a
comment in the file would explain how to use the option. After a
major release, any modern construct that caused no trouble in the
last release is considered OK to use.
This process makes it easy to leave behind obsolete language
restrictions: if you wonder if it's OK now to use a feature that once
broke some crufty platform, drop it in modern.c and forget about it.
After the next release, you know the answer.
Nathan Myers
[email protected]
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
2001-05-23 15:58 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 21:21 ` Re: More pgindent follies Nathan Myers <[email protected]>
@ 2001-05-24 04:04 ` Tom Lane <[email protected]>
2001-05-24 04:37 ` Re: More pgindent follies Bruce Momjian <[email protected]>
0 siblings, 1 reply; 280+ messages in thread
From: Tom Lane @ 2001-05-24 04:04 UTC (permalink / raw)
To: pgsql-hackers
[email protected] (Nathan Myers) writes:
> This is good news!
> Maybe this process can be formalized. That is, each official release
> migh contain a source file with various "modern" constructs which we
> suspect might break old compilers.
I have no objection to this, if the process *is* formalized --- that
is, we explicitly know and agree to probing for certain obsolescent
constructs in each release. The thing that bothered me about this
was that pgindent was pushing the envelope without any explicit
discussion or advance knowledge.
There's plenty of historical cruft in PG that I'd be glad to get rid
of, if we can satisfy ourselves that it's no longer needed for any
platform of interest. It's "stealth" obsolescence checks that bother
me ;-)
> After a major release, any modern construct that caused no trouble in
> the last release is considered OK to use.
Probably need to allow a couple major releases, considering that we
see lots of people migrating from not-the-last release. But that's a
quibble. My point is we need an explicit debate about the risks and
benefits of each change. Finding out two years later that a broken tool
was doing the experiment without our knowledge is not cool.
regards, tom lane
^ permalink raw reply [nested|flat] 280+ messages in thread
* Re: More pgindent follies
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Re: More pgindent follies Tom Lane <[email protected]>
2001-05-23 15:58 ` Re: More pgindent follies Bruce Momjian <[email protected]>
2001-05-23 21:21 ` Re: More pgindent follies Nathan Myers <[email protected]>
2001-05-24 04:04 ` Re: More pgindent follies Tom Lane <[email protected]>
@ 2001-05-24 04:37 ` Bruce Momjian <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Bruce Momjian @ 2001-05-24 04:37 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: pgsql-hackers
> I have no objection to this, if the process *is* formalized --- that
> is, we explicitly know and agree to probing for certain obsolescent
> constructs in each release. The thing that bothered me about this
> was that pgindent was pushing the envelope without any explicit
> discussion or advance knowledge.
Actually, as can be seen from the recent use of readdir() by WAL, often
new features/constructs get in when someone adds them and they get
through release testing.
--
Bruce Momjian | http://candle.pha.pa.us
[email protected] | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
* [PATCH v1 1/1] fix some commented undefs
@ 2025-12-11 21:26 Nathan Bossart <[email protected]>
0 siblings, 0 replies; 280+ messages in thread
From: Nathan Bossart @ 2025-12-11 21:26 UTC (permalink / raw)
---
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/utils/adt/numeric.c | 2 +-
src/include/executor/execdebug.h | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backend/access/nbtree/nbtsort.c b/src/backend/access/nbtree/nbtsort.c
index d7695dc1108..5119db53a1b 100644
--- a/src/backend/access/nbtree/nbtsort.c
+++ b/src/backend/access/nbtree/nbtsort.c
@@ -69,8 +69,8 @@
/*
* DISABLE_LEADER_PARTICIPATION disables the leader's participation in
* parallel index builds. This may be useful as a debugging aid.
-#undef DISABLE_LEADER_PARTICIPATION
*/
+/* #define DISABLE_LEADER_PARTICIPATION */
/*
* Status record for spooling/sorting phase. (Note we may have two of
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 2460698df01..a42a2948121 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -48,8 +48,8 @@
* Uncomment the following to enable compilation of dump_numeric()
* and dump_var() and to get a dump of any result produced by make_result().
* ----------
-#define NUMERIC_DEBUG
*/
+/* #define NUMERIC_DEBUG */
/* ----------
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index e5d27fb6c9a..d999a907e77 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -34,22 +34,22 @@
* EXEC_NESTLOOPDEBUG is a flag which turns on debugging of the
* nest loop node by NL_printf() and ENL_printf() in nodeNestloop.c
* ----------------
-#undef EXEC_NESTLOOPDEBUG
*/
+/* #define EXEC_NESTLOOPDEBUG */
/* ----------------
* EXEC_SORTDEBUG is a flag which turns on debugging of
* the ExecSort() stuff by SO_printf() in nodeSort.c
* ----------------
-#undef EXEC_SORTDEBUG
*/
+/* #define EXEC_SORTDEBUG */
/* ----------------
* EXEC_MERGEJOINDEBUG is a flag which turns on debugging of
* the ExecMergeJoin() stuff by MJ_printf() in nodeMergejoin.c
* ----------------
-#undef EXEC_MERGEJOINDEBUG
*/
+/* #define EXEC_MERGEJOINDEBUG */
/* ----------------------------------------------------------------
* #defines controlled by above definitions
--
2.39.5 (Apple Git-154)
--6vjI3TbFXYVKYNF4--
^ permalink raw reply [nested|flat] 280+ messages in thread
end of thread, other threads:[~2025-12-11 21:26 UTC | newest]
Thread overview: 280+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2001-05-20 21:03 More pgindent follies Tom Lane <[email protected]>
2001-05-22 01:22 ` Bruce Momjian <[email protected]>
2001-05-23 13:05 ` Tom Lane <[email protected]>
2001-05-23 15:58 ` Bruce Momjian <[email protected]>
2001-05-23 19:45 ` Tom Lane <[email protected]>
2001-05-23 21:21 ` Nathan Myers <[email protected]>
2001-05-24 04:04 ` Tom Lane <[email protected]>
2001-05-24 04:37 ` Bruce Momjian <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
2025-12-11 21:26 [PATCH v1 1/1] fix some commented undefs Nathan Bossart <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox