Re: BUG #10201: Invalid input accepted with IN expression - Mailing list pgsql-bugs

From Andres Freund
Subject Re: BUG #10201: Invalid input accepted with IN expression
Date
Msg-id 20140502200555.GD12715@awork2.anarazel.de
Whole thread Raw
In response to BUG #10201: Invalid input accepted with IN expression  (dbaston@gmail.com)
List pgsql-bugs
Hi,

On 2014-05-02 20:01:27 +0000, dbaston@gmail.com wrote:
> If two items in an IN expression are separated by a newline instead of a
> comma, those items will be ignored with no error.
>
> CREATE TABLE testing (id varchar(1));
> INSERT INTO testing VALUES ('1'), ('2'), ('3'), ('4'), ('5');
>
> -- Missing comma produces a syntax error
> SELECT * FROM testing WHERE id IN ('1'  '2', '3');
>
> -- Unless there is a newline
> SELECT * FROM testing WHERE id IN ('1'
> '2', '3');

Check what
SELECT '1'
'2';
returns. Two string constants separated by a newline are essentially
concatenated. So, what the above means is: id IN ('12', '3')

Check:
http://www.postgresql.org/docs/current/interactive/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS

Greetings,

Andres Freund

--
 Andres Freund                       http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

pgsql-bugs by date:

Previous
From: dbaston@gmail.com
Date:
Subject: BUG #10201: Invalid input accepted with IN expression
Next
From: Tom Lane
Date:
Subject: Re: BUG #10201: Invalid input accepted with IN expression