diff options
Diffstat (limited to 'doc/build/dialects/postgresql.rst')
-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: |