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
After importing pugsql, calling sqlalchemy's has_table method causes an infinite recursive loop. This may happen when any BindParameter is used but I am not sure.
To reproduce:
-Import pugsql
-Create an MSSQL pyodbc sqlalchemy engine
-Call the dialects has_table method like this:
Does this happen if you just call create_engine with your parameters to connect (i.e. if you aren't using pugsql)? A naive test case doesn't reproduce it.
After importing pugsql, calling sqlalchemy's has_table method causes an infinite recursive loop. This may happen when any BindParameter is used but I am not sure.
To reproduce:
-Import pugsql
-Create an MSSQL pyodbc sqlalchemy engine
-Call the dialects has_table method like this:
engine.dialect.has_table(engine, table, schema=schema)
The text was updated successfully, but these errors were encountered: