diff options
author | Audrius Kažukauskas <audrius@neutrino.lt> | 2013-01-28 19:58:06 +0200 |
---|---|---|
committer | Audrius Kažukauskas <audrius@neutrino.lt> | 2013-01-28 19:58:06 +0200 |
commit | dbdf4f25e2b1054e8f843f8ed0256ece86d68080 (patch) | |
tree | 3b7be63ca7cee6acc9e62b1f4d757cb93aca89ee /doc | |
parent | 684d8d4c8112b34bbe5d5e35bb2ecba1686fda4c (diff) | |
download | sqlalchemy-dbdf4f25e2b1054e8f843f8ed0256ece86d68080.tar.gz |
Add ANY/ALL construct support for PostgreSQL's ARRAY type
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build/dialects/postgresql.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/build/dialects/postgresql.rst b/doc/build/dialects/postgresql.rst index c016c57a5..df141cce0 100644 --- a/doc/build/dialects/postgresql.rst +++ b/doc/build/dialects/postgresql.rst @@ -14,9 +14,9 @@ they originate from :mod:`sqlalchemy.types` or from the local dialect:: from sqlalchemy.dialects.postgresql import \ ARRAY, BIGINT, BIT, BOOLEAN, BYTEA, CHAR, CIDR, DATE, \ - DOUBLE_PRECISION, ENUM, FLOAT, INET, INTEGER, INTERVAL, \ - MACADDR, NUMERIC, REAL, SMALLINT, TEXT, TIME, TIMESTAMP, \ - UUID, VARCHAR + DOUBLE_PRECISION, ENUM, FLOAT, HSTORE, INET, INTEGER, \ + INTERVAL, MACADDR, NUMERIC, REAL, SMALLINT, TEXT, TIME, \ + TIMESTAMP, UUID, VARCHAR Types which are specific to PostgreSQL, or have PostgreSQL-specific construction arguments, are as follows: @@ -29,6 +29,10 @@ construction arguments, are as follows: :members: __init__, Comparator :show-inheritance: +.. autoclass:: Any + +.. autoclass:: All + .. autoclass:: BIT :members: __init__ :show-inheritance: |