]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Deriving from TEXT now
authorJulian David Rath <julian.rath@semadox.com>
Mon, 6 Mar 2023 07:29:20 +0000 (08:29 +0100)
committerJulian David Rath <julian.rath@semadox.com>
Mon, 6 Mar 2023 07:29:20 +0000 (08:29 +0100)
lib/sqlalchemy/dialects/postgresql/types.py

index 95b4368a34ee1367c3b7836025ffd6dbc888c9dc..1a50d1ce9f70ea9f99f0acb2dd0e85b18e2287ba 100644 (file)
@@ -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"