Re: BUG #13273: A query that returns wrongly labeled result instead of syntax error

From: Thomas Munro <thomas(dot)munro(at)enterprisedb(dot)com>
To: v-brody(at)seznam(dot)cz
Cc: PostgreSQL Bugs <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: BUG #13273: A query that returns wrongly labeled result instead of syntax error
Date: 2015-05-12 04:17:17
Message-ID: CAEepm=1qfYkwg2wUz3wV7Bx+qkfZbd--7-LYyVduEUvZ_mQ7sQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Tue, May 12, 2015 at 10:46 AM, <v-brody(at)seznam(dot)cz> wrote:
> The following bug has been logged on the website:
>
> Bug reference: 13273
> Logged by: Missing comma in SELECT list results in wrong label without error
> Email address: v-brody(at)seznam(dot)cz
> PostgreSQL version: 9.4.1
> Operating system: CentOS Linux
> Description:
>
> Following query (notice the missing comma between top-level "x" and "y")
> returns 1 (which is "x" value) under label "y" without any warning.
>
> select
> "x" "y"
> from
> (
> select
> "a" as "x", "b" as "y"
> from
> (
> select 1 as "a", 2 as "b"
> ) "subquery1"
> ) "subquery2";
>
> Expected behavior: syntax error

That is valid syntax, the AS keyword is optional (in PostgreSQL as
well as in standard SQL):

http://www.postgresql.org/docs/9.4/static/sql-select.html

postgres=# select 42 as y;
y
----
42
(1 row)

postgres=# select 42 y;
y
----
42
(1 row)

--
Thomas Munro
http://www.enterprisedb.com

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Václav Brodec 2015-05-12 08:19:39 Re: BUG #13273: A query that returns wrongly labeled result instead of syntax error
Previous Message Tom Lane 2015-05-12 03:35:36 Re: Prepare/Execute silently discards prohibited ORDER BY values