> From: Tom Lane
> Sent: 29 May 2022 18:43
> To: Alastair McKinley
> Cc: Andrew Dunstan ; pgsql-general@lists.postgresql.org
>
> Subject: Re: Function definition regression in 15beta1 when specific
> parameter name (string) is used
>
> Alastair McKinley writes:
Alastair McKinley writes:
> The following function definition fails in 15beta1 (ok in 14.3):
> create or replace function regexp_match_test(string text,pattern text)
> returns text[] as
> $$
> select regexp_match(string,pattern);
> $$ language sql;
Commit 1a36bc9db seems to
On 5/29/22 10:29, Adrian Klaver wrote:
On 5/29/22 09:46, Alastair McKinley wrote:
Hi all,
Postgres 15:
https://www.postgresql.org/docs/15/sql-keywords-appendix.html
STRING reserved (can be function or type) non-reserved
Postgres 14:
https://www.postgresql.org/docs/14/sql-keyword
On 5/29/22 09:46, Alastair McKinley wrote:
Hi all,
I was testing an existing codebase with 15beta1 and ran into this issue.
I reduced the test case to an example with works in 14.3, and fails in 15beta1.
The following function definition fails in 15beta1 (ok in 14.3):
create or replace f
Hi all,
I was testing an existing codebase with 15beta1 and ran into this issue.
I reduced the test case to an example with works in 14.3, and fails in 15beta1.
The following function definition fails in 15beta1 (ok in 14.3):
create or replace function regexp_match_test(string text,pattern