Re: Shouldn't CREATE TABLE LIKE copy the relhasoids property?

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Shouldn't CREATE TABLE LIKE copy the relhasoids property?
Date: 2015-04-23 13:26:50
Message-ID: CA+TgmoaLu+vZWqHE7ZCLmce5KhzGz8CRqhLynF==kz7HT2FQeQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, Apr 22, 2015 at 8:57 PM, Bruce Momjian <bruce(at)momjian(dot)us> wrote:
> On Tue, Apr 21, 2015 at 05:36:41PM -0400, Robert Haas wrote:
>> On Mon, Apr 20, 2015 at 5:41 PM, Bruce Momjian <bruce(at)momjian(dot)us> wrote:
>> > On Mon, Apr 20, 2015 at 05:04:14PM -0400, Robert Haas wrote:
>> >> On Mon, Apr 20, 2015 at 4:11 PM, Bruce Momjian <bruce(at)momjian(dot)us> wrote:
>> >> > Slightly improved patch applied.
>> >>
>> >> Is it?
>> >
>> > The patch has a slightly modified 'if' statement to check a constant
>> > before calling a function, and use elseif:
>> >
>> > < + if (!interpretOidsOption(stmt->options, true) && cxt.hasoids)
>> > ---
>> > > + if (cxt.hasoids && !interpretOidsOption(stmt->options, true))
>> > 47c57
>> > < + if (interpretOidsOption(stmt->options, true) && !cxt.hasoids)
>> > ---
>> > > + else if (!cxt.hasoids && interpretOidsOption(stmt->options, true))
>> >
>> > I realize the change is subtle.
>>
>> What I meant was - I didn't see an attachment on that message.
>
> I didn't attach it as people have told me they can just as easily see
> the patch via git, and since it was so similar, I didn't repost it.
> Should I have? I can easily do that.

No, I just misread your email. I thought you said you had attached
the patch; rereading it, I see that you said you had applied the
patch. Silly me.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Pavel Stehule 2015-04-23 13:33:41 Re: Allow SQL/plpgsql functions to accept record
Previous Message Robert Haas 2015-04-23 13:25:54 Re: Turning off HOT/Cleanup sometimes