schema.table.column syntax no longer supported?

Lists: pgsql-testers
From: Matthew Bellew <matthewb(at)labkey(dot)com>
To: pgsql-testers(at)postgresql(dot)org
Subject: schema.table.column syntax no longer supported?
Date: 2010-04-15 23:29:49
Message-ID: h2x480de0691004151629m2d42937cs8dace11e4c677c43@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-testers

[TEST REPORT]
[Release]: 9.0Alpha4
[Test Type]: Application
[Test]: SELECT w/ schema qualified table name
[Platform]: Snow Leopard
[Parameters]:
[Failure]: comptibility issue, fails under 9.0 works 8.x
[Results]:

create schema S;
create table S.T (x int, y int);
select S.T.* from S.T;

results in this error
ERROR: invalid reference to FROM-clause entry for table "t"

This was hit while trying to install a server (www.labkey.org). The
install scripts had dozens of failures of this type under 9.0Alpha4.
INSERT,UPDATE,DELETE had variations on this error message.

[Comments]:


From: Josh Berkus <josh(at)agliodbs(dot)com>
To: Matthew Bellew <matthewb(at)labkey(dot)com>
Cc: pgsql-testers(at)postgresql(dot)org
Subject: Re: schema.table.column syntax no longer supported?
Date: 2010-04-15 23:45:27
Message-ID: 4BC7A517.4010507@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-testers


> This was hit while trying to install a server (www.labkey.org). The
> install scripts had dozens of failures of this type under 9.0Alpha4.
> INSERT,UPDATE,DELETE had variations on this error message.

Thanks, will see if I can replicate.

--
-- Josh Berkus
PostgreSQL Experts Inc.
http://www.pgexperts.com


From: Steve Singer <ssinger(at)ca(dot)afilias(dot)info>
To: Josh Berkus <josh(at)agliodbs(dot)com>
Cc: Matthew Bellew <matthewb(at)labkey(dot)com>, pgsql-testers(at)postgresql(dot)org
Subject: Re: schema.table.column syntax no longer supported?
Date: 2010-04-27 22:04:27
Message-ID: 4BD75F6B.1020202@ca.afilias.info
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-testers

Josh Berkus wrote:
>> This was hit while trying to install a server (www.labkey.org). The
>> install scripts had dozens of failures of this type under 9.0Alpha4.
>> INSERT,UPDATE,DELETE had variations on this error message.
>
> Thanks, will see if I can replicate.
>

I can replicate this as well with a recent cvs/git build.

CREATE TABLE a(a int4);
CREATE TABLE b(b int4);
UPDATE public.a SET a=1 FROM public.b WHERE public.a.a=public.b.b;

will replicate this issue

It works fine in 8.4

--
Steve Singer
Afilias Canada
Data Services Developer
416-673-1142


From: Josh Berkus <josh(at)agliodbs(dot)com>
To: Steve Singer <ssinger(at)ca(dot)afilias(dot)info>
Cc: Matthew Bellew <matthewb(at)labkey(dot)com>, pgsql-testers(at)postgresql(dot)org
Subject: Re: schema.table.column syntax no longer supported?
Date: 2010-04-27 22:29:21
Message-ID: 4BD76541.1050300@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-testers

Steve,

That's a bug alright. Raising it on -hackers.

--
-- Josh Berkus
PostgreSQL Experts Inc.
http://www.pgexperts.com