pg_xact_status()

报告事务提交状态的函数

pg_xact_status() 是一个系统函数,用于报告最近事务的提交状态。

pg_xact_status() 添加于 PostgreSQL 13

用法

pg_xact_status ( xid8 ) → text

pg_xact_status() 返回以下值之一:

  • 已提交
  • 进行中
  • 已中止

pg_xact_status() 替换了 txid_status()

变更历史

示例

pg_xact_status() 的基本用法示例

postgres=# BEGIN;
BEGIN

postgres=*# SELECT pg_current_xact_id();
 pg_current_xact_id 
--------------------
                762
(1 row)

postgres=*# SELECT pg_xact_status('762');
 pg_xact_status 
----------------
 in progress
(1 row)

postgres=*# COMMIT; COMMIT postgres=# SELECT pg_xact_status('762'); pg_xact_status ---------------- committed (1 row)

尝试检索尚未发生的事务的状态

postgres=# SELECT pg_xact_status('9999');
ERROR:  transaction ID 9999 is in the future

分类

系统函数事务

参见

pg_current_xact_id()pg_current_xact_id_if_assigned()pg_prepared_xacts

反馈

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