summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-12-10 14:27:30 +0100
committerFederico Caselli <cfederico87@gmail.com>2021-12-10 14:27:30 +0100
commit9d837b02b5eb42385281b88d09fe2aeea0376ca9 (patch)
tree0d7ccb46ae693787f0bd5f050005d9ea339d313f
parent533f5718904b620be8d63f2474229945d6f8ba5d (diff)
parent786bc099743285ca4af3786d8f54cd59ce7a7c81 (diff)
downloadsqlalchemy-9d837b02b5eb42385281b88d09fe2aeea0376ca9.tar.gz
Merge branch 'postgresql-docs-update-table-numbers' into main_gerrit
Change-Id: Iac125101206ac78fb8344fd190b05e3d41151eee
-rw-r--r--lib/sqlalchemy/dialects/postgresql/ranges.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/ranges.py b/lib/sqlalchemy/dialects/postgresql/ranges.py
index d141ee731..46114be6b 100644
--- a/lib/sqlalchemy/dialects/postgresql/ranges.py
+++ b/lib/sqlalchemy/dialects/postgresql/ranges.py
@@ -13,15 +13,15 @@ __all__ = ("INT4RANGE", "INT8RANGE", "NUMRANGE")
class RangeOperators:
"""
This mixin provides functionality for the Range Operators
- listed in Table 9-44 of the `PostgreSQL documentation`__ for Range
- Functions and Operators. It is used by all the range types
+ listed in the Range Operators table of the `PostgreSQL documentation`__
+ for Range Functions and Operators. It is used by all the range types
provided in the ``postgres`` dialect and can likely be used for
any range types you create yourself.
__ https://www.postgresql.org/docs/devel/static/functions-range.html
- No extra support is provided for the Range Functions listed in
- Table 9-45 of the PostgreSQL documentation. For these, the normal
+ No extra support is provided for the Range Functions listed in the Range
+ Functions table of the PostgreSQL documentation. For these, the normal
:func:`~sqlalchemy.sql.expression.func` object should be used.
"""