Re: [HACKERS] Is this it?

From: Chris Bitmead <chrisb(at)nimrod(dot)itg(dot)telstra(dot)com(dot)au>
To: "pgsql-hackers(at)postgreSQL(dot)org" <pgsql-hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] Is this it?
Date: 2000-02-08 04:52:05
Message-ID: 389FA0F5.34427139@nimrod.itg.telecom.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Chris Bitmead wrote:
>
> In ExecInitAppend it has a loop...
>
> foreach(rtentryP, rtable)
> {
>
> resultList = lcons(rri, resultList);
> }
>
> appendstate->as_result_relation_info_list = resultList;

This seems to be the problem. I'm going to change the above line to...

appendstate->as_result_relation_info_list = lreverse(resultList);

After I do this, UPDATE and DELETE start working for me on subclasses.

I'll prepare a full patch for inclusion in 7.1 (Unless you want it for
7.0 :-).

In response to

  • Is this it? at 2000-02-08 04:24:14 from Chris Bitmead

Browse pgsql-hackers by date

  From Date Subject
Next Message Don Baccus 2000-02-08 04:59:46 Re: [HACKERS] TODO item
Previous Message Chris Bitmead 2000-02-08 04:46:52 Re: [HACKERS] ExecInitAppend