COMMIT PREPARED
Description
Commits a prepared two-phase transaction.
Precautions
- The function is only available in maintenance mode (when the GUC parameter xc_maintenance_mode is on). Exercise caution when enabling the mode. It is used by maintenance engineers for troubleshooting. Common users should not use the mode.
- Only the transaction creators or system administrators can run the COMMIT PREPARED command. The creation and commit operations must be in different sessions.
- The transaction function is maintained automatically by the database, and should be not visible to users.
Syntax
1
|
COMMIT PREPARED transaction_id [ WITH commit_sequence_number ]; |
Parameters
- transaction_id
Specifies the identifier of the transaction to be committed. The identifier must be different from those for current prepared transactions.
- commit_sequence_number
Specifies the sequence number of the transaction to be committed. It is a 64-bit, incremental, unsigned number.
Examples
-- Start. openGauss=# begin; -- Prepare a transaction whose identifier is trans_test. openGauss=# PREPARE TRANSACTION 'trans_test'; -- Create a table. openGauss=# CREATE TABLE item1(id int); -- Commit the transaction whose identifier is trans_test. openGauss=# COMMIT PREPARED 'trans_test'; -- Drop the table. openGauss=# DROP TABLE item1;
Helpful Links
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.