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 7748810 commit f3779c4Copy full SHA for f3779c4
CHANGES.md
@@ -2,6 +2,7 @@
2
Unreleased
3
4
- Fix reflection of CHAR columns (#275)
5
+- Fix reflection of JSONB columns (#277)
6
7
8
# Version 2.0.3
sqlalchemy_cockroachdb/base.py
@@ -7,6 +7,7 @@
from sqlalchemy.dialects.postgresql import ARRAY
from sqlalchemy.dialects.postgresql import INET
9
from sqlalchemy.dialects.postgresql import UUID
10
+from sqlalchemy.dialects.postgresql import JSONB
11
from sqlalchemy.ext.compiler import compiles
12
from sqlalchemy.util import warn
13
import sqlalchemy.sql as sql
@@ -60,7 +61,7 @@
60
61
"bytea": sqltypes.BLOB,
62
"bytes": sqltypes.BLOB,
63
"json": sqltypes.JSON,
- "jsonb": sqltypes.JSON,
64
+ "jsonb": JSONB,
65
"uuid": UUID,
66
"inet": INET,
67
}
0 commit comments