diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-18 11:33:56 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-18 11:33:56 -0400 |
commit | ba1e959e5316a8c17ca80dca950574038bd650c4 (patch) | |
tree | 1e1c107170bff5e584c7db7b521517cd5f928860 /lib/sqlalchemy/dialects/postgresql/array.py | |
parent | d14a4b480c3b43885707e4a6e2466589971ff4d5 (diff) | |
download | sqlalchemy-ba1e959e5316a8c17ca80dca950574038bd650c4.tar.gz |
- document workaround type for ARRAY of ENUM, fixes #3467
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 8c63b43ce..84bd0ba92 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -203,6 +203,10 @@ class ARRAY(sqltypes.Indexable, sqltypes.Concatenable, sqltypes.TypeEngine): The :class:`.ARRAY` type may not be supported on all DBAPIs. It is known to work on psycopg2 and not pg8000. + Additionally, the :class:`.ARRAY` type does not work directly in + conjunction with the :class:`.ENUM` type. For a workaround, see the + special type at :ref:`postgresql_array_of_enum`. + See also: :class:`.postgresql.array` - produce a literal array value. |