diff --git a/ibis/backends/sql/datatypes.py b/ibis/backends/sql/datatypes.py index b8bff67a1cec..e17f7ef2ad38 100644 --- a/ibis/backends/sql/datatypes.py +++ b/ibis/backends/sql/datatypes.py @@ -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, } )