diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2023-04-12 23:41:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2023-04-12 23:41:19 +0000 |
| commit | b066c45dc491716a4e34bdeb9a9726bcbc136fb5 (patch) | |
| tree | ae40a051b41f73d3587cb1f2785c85e810e89dc7 /lib/sqlalchemy/dialects/postgresql/array.py | |
| parent | 53be3fc70a44d34fda1ffddcf9d67473d3de50b4 (diff) | |
| parent | ee7e49964fcf13ed0f5a3541b81f00302a9db29a (diff) | |
| download | sqlalchemy-b066c45dc491716a4e34bdeb9a9726bcbc136fb5.tar.gz | |
Merge "Remove old versionadded and versionchanged" into main
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
| -rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 5b53916c6..ba53bf665 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -163,12 +163,8 @@ OVERLAP = operators.custom_op("&&", precedence=5, is_comparison=True) class ARRAY(sqltypes.ARRAY): - """PostgreSQL ARRAY type. - .. versionchanged:: 1.1 The :class:`_postgresql.ARRAY` type is now - a subclass of the core :class:`_types.ARRAY` type. - The :class:`_postgresql.ARRAY` type is constructed in the same way as the core :class:`_types.ARRAY` type; a member type is required, and a number of dimensions is recommended if the type is to be used for more @@ -308,9 +304,6 @@ class ARRAY(sqltypes.ARRAY): a value of one will be added to all index values before passing to the database. - .. versionadded:: 0.9.5 - - """ if isinstance(item_type, ARRAY): raise ValueError( |
