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
{{ message }}
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
conservative (default) -- rollback to savepoint only in case of "prepared statement does not exist" and "cached plan must not change result type". Then the driver would re-execute the statement ant it would pass through
never -- never set automatic safepoint. Note: in this mode statements might still fail with "cached plan must not change result type" in autoCommit=FALSE mode
always -- always rollback to "before statement execution" state in case of failure. This mode prevents "current transaction aborted" errors. It is similar to psql's ON_ERROR_ROLLBACK.
For autocommit=true the savepoint is not used.
In conservative mode, savepoint is used only for queries that return something.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
New connection property: autosave
conservative (default) -- rollback to savepoint only in case of "prepared statement does not exist" and "cached plan must not change result type". Then the driver would re-execute the statement ant it would pass through
never -- never set automatic safepoint. Note: in this mode statements might still fail with "cached plan must not change result type" in autoCommit=FALSE mode
always -- always rollback to "before statement execution" state in case of failure. This mode prevents "current transaction aborted" errors. It is similar to psql's ON_ERROR_ROLLBACK.
For autocommit=true the savepoint is not used.
In conservative mode, savepoint is used only for queries that return something.
The text was updated successfully, but these errors were encountered: