Re: Allow LISTEN on patterns
Greg Sabino Mullane <htamfids@gmail.com>
From: Greg Sabino Mullane <htamfids@gmail.com>
To: Trey Boudreau <trey@treysoft.com>
Cc: pgsql-hackers <pgsql-hackers@postgresql.org>, Aleksander Alekseev <aleksander@timescale.com>,
Quan Zongliang <quanzongliang@yeah.net>, Tom Lane <tgl@sss.pgh.pa.us>
Date: 2025-03-05T17:21:25Z
Lists: pgsql-hackers
Does not seem like a bug to me. Just the normal auto-lowercase encountered in every other SQL command. See: greg=# select * from pg_listening_channels(); pg_listening_channels ----------------------- (0 rows) greg=# listen foo; LISTEN greg=# select * from pg_listening_channels(); pg_listening_channels ----------------------- foo (1 row) greg=# listen FOO; LISTEN greg=# select * from pg_listening_channels(); pg_listening_channels ----------------------- foo (1 row) greg=# listen "FOO"; LISTEN greg=# select * from pg_listening_channels(); pg_listening_channels ----------------------- foo FOO (2 rows) Cheers, Greg -- Crunchy Data - https://www.crunchydata.com Enterprise Postgres Software Products & Tech Support