pg_snapshot_xip()

返回快照中正在进行的事务 ID 的函数

pg_snapshot_xip() 是一个系统函数,返回快照中包含的正在进行的事务 ID 集。

pg_snapshot_xip()PostgreSQL 13 中添加。

用法

pg_snapshot_xip ( pg_snapshot ) → setof xid8

pg_snapshot_xip() 替换了 txid_snapshot_xip()

更改历史记录

示例

pg_snapshot_xip() 的基本用法示例

postgres=# SELECT pg_current_snapshot();
 pg_current_snapshot 
---------------------
 795:799:795,797
(1 row)

postgres=# SELECT * FROM pg_snapshot_xip(pg_current_snapshot());
 pg_snapshot_xip 
-----------------
             795
             797
(2 rows)

分类

系统函数事务

另请参阅

pg_snapshot_xmin()pg_snapshot_xmax()pg_current_snapshot()

反馈

提交任何关于 "pg_snapshot_xip()" 的评论、建议或更正 此处