Re: long sql "in" clause crashes server process (8.0 Release) - Mailing list pgsql-hackers-win32

From Tom Lane
Subject Re: long sql "in" clause crashes server process (8.0 Release)
Date
Msg-id 24278.1106596636@sss.pgh.pa.us
Whole thread Raw
In response to Re: long sql "in" clause crashes server process (8.0 Release)  ("Merlin Moncure" <merlin.moncure@rcsonline.com>)
List pgsql-hackers-win32
"Merlin Moncure" <merlin.moncure@rcsonline.com> writes:
> C:\msys\1.0\local\pgsql\bin>"c:\Program Files\Microsoft Visual
> Studio\VC98\Bin"\dumpbin /headers pos
> tmaster.exe | grep stack
>           200000 size of stack reserve
>             1000 size of stack commit

Hmm, are those in bytes?  The default value of max_stack_depth is 2048
(kilobytes), which really means that we are assuming a physical stack
limit of 3Mb or more, because the max_stack_depth check isn't exact.

Can we increase that setting during the Windows build?  I'd like to see
it set to 4Mb if possible.

BTW, what's the difference between "stack reserve" and "stack commit"?

            regards, tom lane

pgsql-hackers-win32 by date:

Previous
From: "Merlin Moncure"
Date:
Subject: Re: long sql "in" clause crashes server process (8.0 Release)
Next
From: "Merlin Moncure"
Date:
Subject: Re: long sql "in" clause crashes server process (8.0 Release)