pg_snapshot_xmax()

返回快照的 xmax 值的函数

pg_snapshot_xmax() 是一个返回快照的 xmax 值的系统函数。

pg_snapshot_xmax()PostgreSQL 13 中添加。

用法

pg_snapshot_xmax ( pg_snapshot ) → xid8

pg_snapshot_xmax() 替换了 txid_snapshot_xmax()

更改历史记录

示例

pg_snapshot_xmax() 的基本用法示例

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

postgres=# SELECT pg_snapshot_xmax(pg_current_snapshot());
 pg_snapshot_xmax 
------------------
              799
(1 row)

分类

系统函数事务

另请参阅

pg_snapshot_xmin()pg_snapshot_xip()pg_current_snapshot()

反馈

提交您对 "pg_snapshot_xmax()" 的任何评论、建议或更正 此处