From: Julian David Rath Date: Mon, 6 Mar 2023 07:29:20 +0000 (+0100) Subject: Deriving from TEXT now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a38ea2b03be93c6496061195e387465ca54bd7dc;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Deriving from TEXT now --- diff --git a/lib/sqlalchemy/dialects/postgresql/types.py b/lib/sqlalchemy/dialects/postgresql/types.py index 95b4368a34..1a50d1ce9f 100644 --- a/lib/sqlalchemy/dialects/postgresql/types.py +++ b/lib/sqlalchemy/dialects/postgresql/types.py @@ -257,8 +257,8 @@ class TSVECTOR(sqltypes.TypeEngine[str]): __visit_name__ = "TSVECTOR" -class CITEXT(sqltypes.TypeEngine[str]): +class CITEXT(sqltypes.TEXT): - """The :class:`_postgresql.CITEXT` type implements the PostgreSQL""" + """Provide the PostgreSQL CITEXT type.""" __visit_name__ = "CITEXT"