Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Unreleased

- Fix reflection of CHAR columns (#275)
- Fix reflection of TIMESTAMPTZ columns (#276), thanks to @nvachhar
- Fix reflection of JSONB columns (#277)


# Version 2.0.3
Expand Down
3 changes: 2 additions & 1 deletion sqlalchemy_cockroachdb/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from sqlalchemy.dialects.postgresql import ARRAY
from sqlalchemy.dialects.postgresql import INET
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.dialects.postgresql import JSONB
from sqlalchemy.ext.compiler import compiles
from sqlalchemy.util import warn
import sqlalchemy.sql as sql
Expand Down Expand Up @@ -60,7 +61,7 @@
"bytea": sqltypes.BLOB,
"bytes": sqltypes.BLOB,
"json": sqltypes.JSON,
"jsonb": sqltypes.JSON,
"jsonb": JSONB,
"uuid": UUID,
"inet": INET,
}
Expand Down