We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7bc8ca commit 9d171feCopy full SHA for 9d171fe
1 file changed
tests/test_sqlmodel.py
@@ -7,6 +7,9 @@
7
8
engine = create_engine('postgresql+psycopg2://localhost/pgvector_python_test')
9
with Session(engine) as session:
10
+ # typing issue
11
+ # https://github.com/fastapi/sqlmodel/issues/909
12
+ # https://github.com/fastapi/sqlmodel/pull/1657
13
session.exec(text('CREATE EXTENSION IF NOT EXISTS vector')) # type: ignore
14
15
0 commit comments