We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97563e commit f7b4620Copy full SHA for f7b4620
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.1.5 (unreleased)
2
+
3
+- Fixed warning with SQLAlchemy 1.4.28+
4
5
## 0.1.4 (2021-10-12)
6
7
- Updated psycopg3 integration for 3.0 release (no longer experimental)
pgvector/sqlalchemy/__init__.py
@@ -5,6 +5,8 @@
class Vector(UserDefinedType):
8
+ cache_ok = True
9
10
def __init__(self, dim=None):
11
super(UserDefinedType, self).__init__()
12
self.dim = dim
0 commit comments