bug: evil autoConcat when each string is on new line - Mailing list pgsql-bugs

From Jan Skydánek
Subject bug: evil autoConcat when each string is on new line
Date
Msg-id CAGYHQk6OkeFg1f=7LqtsMRpacJL0Y0y=yeM28dRMG5FKtvSf_g@mail.gmail.com
Whole thread Raw
Responses Re: bug: evil autoConcat when each string is on new line  (Vik Fearing <vik.fearing@2ndquadrant.com>)
Re: bug: evil autoConcat when each string is on new line  (Alvaro Herrera <alvherre@2ndquadrant.com>)
List pgsql-bugs
Does not work (as expected):
SELECT 'aaa' 'bbb' 'ccc';

Works (definitely NOT expected):
SELECT
'aaa'
'bbb'
'ccc'
; -- result is: 'aaabbbccc'


I really hope this behavior is not intentional.

pgsql-bugs by date:

Previous
From: Grigory Smolkin
Date:
Subject: Re: amcheck assert failure
Next
From: Vik Fearing
Date:
Subject: Re: bug: evil autoConcat when each string is on new line