Case sensitive grant statements in pg14? - Mailing list pgsql-admin

From richard coleman
Subject Case sensitive grant statements in pg14?
Date
Msg-id CAGA3vBua6YVJBDKfsaE51U6X0fO5bRfvOtsLFSd+KTy3J95LtA@mail.gmail.com
Whole thread Raw
Responses Re: Case sensitive grant statements in pg14?
List pgsql-admin
Hello all, 

Just ran across a really strange thing in a PostgreSQL 14 database.  Apparently grant statements are now somehow case sensitive.

ex:
grant create, usage on schema {schema_name} to {role};

fails with the error:
ERROR: syntax error at or near "{role}"

but by changing the capitalization of the statement to:
GRANT CREATE, USAGE ON SCHEMA {schema_name} TO {role};

completes successfully.

Is this something new?

Thanks,
rik.

pgsql-admin by date:

Previous
From:
Date:
Subject: Error: Package: postgresql13-devel-13.13-1PGDG.rhel7.x86_64
Next
From: Tom Lane
Date:
Subject: Re: Case sensitive grant statements in pg14?