pg_listening_channels()
是一个系统函数,返回当前会话正在监听的同步通知通道。
pg_listening_channels()
在 PostgreSQL 9.0 中添加。
示例
pg_listening_channels()
的用法示例
postgres=# LISTEN foo; LISTEN postgres=# LISTEN bar; LISTEN postgres=# SELECT * FROM pg_listening_channels(); pg_listening_channels ----------------------- foo bar (2 rows) postgres=# UNLISTEN bar; UNLISTEN postgres=# SELECT * FROM pg_listening_channels(); pg_listening_channels ----------------------- foo (1 row)
参考
- PostgreSQL 文档: 会话信息函数