Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut) - Mailing list pgsql-hackers

From Fabrice Chapuis
Subject Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut)
Date
Msg-id CAA5-nLDcfXZiXPNUW0eNAr3odK+aY-rCZ3FJ_8UCYWmc8HwkBQ@mail.gmail.com
Whole thread Raw
Responses Re: Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut)
Re: Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut)
List pgsql-hackers
Regarding the changes made in version 15 for the traitment of the non-numeric trailing characters, why does parsing continue to be permissive with parentheses (no need to add a space)? Are we still in standard SQL?

Regards

Fabrice

SELECT (123)order by 1;
+----------+
| ?column? |
+----------+
|      123 |
+----------+
(1 row)

postgres [2043238]=#  SELECT (123)abc;
+-----+
| abc |
+-----+
| 123 |
+-----+
(1 row)


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Huge commitfest app update upcoming: Tags, Draft CF, Help page, and automated commitfest creat/open/close
Next
From: Bruce Momjian
Date:
Subject: Re: [PATCH] pg_bsd_indent: improve formatting of multiline comments