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
Is your idea related to a problem? Please describe.
Currently, if there are no exceptions when calling awswrangler.postgresql.to_sql then commit is automatically done:
It makes it impossible to use awswrangler.postgresql.to_sql as a part of a transaction which e.g. writes multiple tables, because if one of the transaction steps fails, you cannot rollback all the changes, just the last one.
Describe the solution you'd like
To add extra parameter for awswrangler.postgresql.to_sql as it was done here, but for redshift: #705
The text was updated successfully, but these errors were encountered:
Is your idea related to a problem? Please describe.
Currently, if there are no exceptions when calling awswrangler.postgresql.to_sql then commit is automatically done:
aws-sdk-pandas/awswrangler/postgresql.py
Line 359 in b13fcd8
It makes it impossible to use awswrangler.postgresql.to_sql as a part of a transaction which e.g. writes multiple tables, because if one of the transaction steps fails, you cannot rollback all the changes, just the last one.
Describe the solution you'd like
To add extra parameter for awswrangler.postgresql.to_sql as it was done here, but for redshift:
#705
The text was updated successfully, but these errors were encountered: