Re: [HACKERS] Stack depth exceeded error

2008-05-12 Thread Suresh
Hi, The code uses Asynchronous I/O for fetching certain tids. The code works fine if I use only one condition in where condition, but fails if I use multiple condition. -- Suresh Iyengar Gregory Stark <[EMAIL PROTECTED]> wrote: "Suresh" writes: > Hello, > > I have custom postgres code. Wha

Re: [HACKERS] Stack depth exceeded error

2008-05-12 Thread Gregory Stark
"Suresh" <[EMAIL PROTECTED]> writes: > Hello, > > I have custom postgres code. What kind of code is this? The error below is typical if you create new threads in the server. -- Gregory Stark EnterpriseDB http://www.enterprisedb.com Ask me about EnterpriseDB's 24x7 Postgres supp

[HACKERS] Stack depth exceeded error

2008-05-12 Thread Suresh
Hello, I have custom postgres code. I get the error below for the query "select l_orderkey as a from tpcd.orders, tpcd.lineitem where o_orderkey=l_orderkey and l_partkey<100 and l_linestatus='F';" ERROR: stack depth limit exceeded HINT: Increase the configuration parameter "max_stack_depth".