4 COMMIT — commit the current transaction
8 COMMIT [ WORK | TRANSACTION ] [ AND [ NO ] CHAIN ]
12 COMMIT commits the current transaction. All changes made by the
13 transaction become visible to others and are guaranteed to be durable
20 Optional key words. They have no effect.
23 If AND CHAIN is specified, a new transaction is immediately
24 started with the same transaction characteristics (see SET
25 TRANSACTION) as the just finished one. Otherwise, no new
26 transaction is started.
30 Use ROLLBACK to abort a transaction.
32 Issuing COMMIT when not inside a transaction does no harm, but it will
33 provoke a warning message. COMMIT AND CHAIN when not inside a
34 transaction is an error.
38 To commit the current transaction and make all changes permanent:
43 The command COMMIT conforms to the SQL standard. The form COMMIT
44 TRANSACTION is a PostgreSQL extension.