Skip to content

Commit

Permalink
feat: reexport postgresql insert function
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Dec 13, 2024
1 parent c6a87e8 commit 51dbb18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion duckdb_engine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import sqlalchemy
from sqlalchemy import pool, select, sql, text, util
from sqlalchemy import types as sqltypes
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.dialects.postgresql import UUID, insert
from sqlalchemy.dialects.postgresql.base import (
PGDialect,
PGIdentifierPreparer,
Expand Down Expand Up @@ -59,6 +59,7 @@
"CursorWrapper",
"DBAPI",
"DuckDBEngineWarning",
"insert", # reexport of sqlalchemy.dialects.postgresql.insert
]


Expand Down

0 comments on commit 51dbb18

Please sign in to comment.