Skip to content

Commit

Permalink
fix(postgres): add dtype mapping for citext
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and jcrist committed Jul 10, 2024
1 parent afa2848 commit f46979b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibis/backends/sql/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,8 @@ class PostgresType(SqlglotType):
"information_schema.time_stamp": dt.timestamp,
# the pre-bool version of bool kept for backwards compatibility
"information_schema.yes_or_no": dt.string,
# a case-insensitive string that has it's own type for some reason
"citext": dt.string,
}
)

Expand Down

0 comments on commit f46979b

Please sign in to comment.