You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On many RDBMS, it's possible to specify if the transaction is read only or not (READ WRITE). By default, a transaction is READ WRITE. When a transaction is set to READ ONLY, it prevent any modification during the transaction and can improve performance in certain cases.
Moreover, I think this READ ONLY / READ WRITE flag is supported by most platforms:
Feature Request
What
On many RDBMS, it's possible to specify if the transaction is read only or not (READ WRITE). By default, a transaction is READ WRITE. When a transaction is set to READ ONLY, it prevent any modification during the transaction and can improve performance in certain cases.
Moreover, I think this READ ONLY / READ WRITE flag is supported by most platforms:
Why
SERIALIZABLE TRANSACTIONS
are used. See https://www.postgresql.org/docs/current/transaction-iso.htmlHow
Maybe add a
readOnly
parameter to thegetSetTransactionIsolationSQL
method with false as the default value:and use this value later to conditionally add
READ WRITE
orREAD ONLY
to the statement.The text was updated successfully, but these errors were encountered: