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
Firstly I want to say thank you! This project is super helpful for me!
According to sqlalchemy 1.4 documentation, SQLAlchemy 2.0 presents a major shift for a wide variety of key SQLAlchemy usage patterns in both the Core and ORM components.
One big change is the "autocommit" feature is deprecated since 1.4.
I ran a simple test using the future flag on engine, and upsert is not working with the engine. No errors showed up, but the table in database remains the same, which made me wonder if it is related to the "autocommit" feature. Details here.
The text was updated successfully, but these errors were encountered:
I was able to pass all tests except for test_crappy_text_insert in module pangres/tests/test_upsert.py. I don't understand why it doesn't pass yet 🤔 .
There are also retrocompability problems which will require some automatic switches depending on the sqlalchemy version (that should not be a big deal I think, we had a similar situation with v1.4).
Firstly I want to say thank you! This project is super helpful for me!
According to sqlalchemy 1.4 documentation,
SQLAlchemy 2.0 presents a major shift for a wide variety of key SQLAlchemy usage patterns in both the Core and ORM components.
One big change is the "autocommit" feature is deprecated since 1.4.
I ran a simple test using the future flag on engine, and upsert is not working with the engine. No errors showed up, but the table in database remains the same, which made me wonder if it is related to the "autocommit" feature. Details here.
The text was updated successfully, but these errors were encountered: