Re: [PATCHES] WITH RECURSIVE patch V0.1 - Mailing list pgsql-hackers

From Yoshiyuki Asaba
Subject Re: [PATCHES] WITH RECURSIVE patch V0.1
Date
Msg-id 20080524.050111.737004071327904079.y-asaba@sraoss.co.jp
Whole thread Raw
In response to Re: [PATCHES] WITH RECURSIVE patch V0.1  (David Fetter <david@fetter.org>)
Responses Re: [PATCHES] WITH RECURSIVE patch V0.1  (David Fetter <david@fetter.org>)
List pgsql-hackers
Hi,

From: David Fetter <david@fetter.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@sraoss.co.jp

pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Execution-time-sensitive timestamp regression tests
Next
From: Magnus Hagander
Date:
Subject: Re: Execution-time-sensitive timestamp regression tests