How to check for pending operations in a PostgreSQL transaction

前端 未结 3 1596
野性不改
野性不改 2021-01-01 13:28

I have a session (SQLAlchemy) on PostgreSQL, with an active uncommitted transaction. I have just passed the session to some call tree that may or may not have issued SQL

相关标签:
3条回答
  • 2021-01-01 14:06

    Start by checking into system view pg_locks.

    http://www.postgresql.org/docs/8.4/interactive/view-pg-locks.html

    0 讨论(0)
  • 2021-01-01 14:15

    No, not from the database level, really. Perhaps you can add some tracing at the sqlalchemy level to track it?

    Also, how do you define a no-op? What if you updated a value to the same value it had before, is that a no-op or not? From the databases perspective, if it had one, it would not be a no-op. But from the application perspective, it probably would.

    0 讨论(0)
  • 2021-01-01 14:30

    Consider the following sequence of statements:

    select txid_current();
    
    begin;
    
    select txid_current();
    

    If the transaction id returned by the two selects is equal, then there is an open transaction. If not then there wasn't, (but now is).

    If the numbers are different, then as a side effect you will just have opened a transaction, which you will probably want to close.

    UPDATE: In fact, as @r2evans points out (thanks for the insight!), you don't need the "begin" -- txid_current() will return the same number just if you are in a transaction.

    0 讨论(0)
提交回复
热议问题