From: | Yoshiyuki Asaba <y-asaba(at)sraoss(dot)co(dot)jp> |
---|---|
To: | david(at)fetter(dot)org |
Cc: | ishii(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: WITH RECURSIVE patch V0.1 |
Date: | 2008-05-23 20:01:11 |
Message-ID: | 20080524.050111.737004071327904079.y-asaba@sraoss.co.jp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
Hi,
From: David Fetter <david(at)fetter(dot)org>
Subject: Re: [PATCHES] WITH RECURSIVE patch V0.1
Date: Fri, 23 May 2008 11:26:30 -0700
> Where is the new patch?
I will create the revised patch on June.
This is a patch for this problem.
*** ../../pgsql/src/backend/executor/nodeRecursivescan.c 2008-05-24 04:45:23.000000000 +0900
--- src/backend/executor/nodeRecursivescan.c 2008-05-24 04:47:54.000000000 +0900
***************
*** 37,43 ****
node->ss.ps.state->es_tuplestorestate = tuplestore_begin_heap(true, false, work_mem);
}
! slot = node->ss.ps.ps_ResultTupleSlot;
if (tuplestore_gettupleslot(node->ss.ps.state->es_tuplestorestate, true, slot))
return slot;
--- 37,43 ----
node->ss.ps.state->es_tuplestorestate = tuplestore_begin_heap(true, false, work_mem);
}
! slot = node->ss.ss_ScanTupleSlot;
if (tuplestore_gettupleslot(node->ss.ps.state->es_tuplestorestate, true, slot))
return slot;
Regards,
--
Yoshiyuki Asaba
y-asaba(at)sraoss(dot)co(dot)jp
From | Date | Subject | |
---|---|---|---|
Next Message | Magnus Hagander | 2008-05-23 20:29:22 | Re: Execution-time-sensitive timestamp regression tests |
Previous Message | Tom Lane | 2008-05-23 19:53:49 | Execution-time-sensitive timestamp regression tests |
From | Date | Subject | |
---|---|---|---|
Next Message | David Fetter | 2008-05-23 20:38:28 | Re: [HACKERS] WITH RECURSIVE patch V0.1 |
Previous Message | Gregory Stark | 2008-05-23 18:55:26 | Re: \d+ should display the storage options for columns |