]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Updated PostgreSQL links to point to "current" rather than hardcoded version
authorJeff Widman <jeff@jeffwidman.com>
Thu, 5 Nov 2015 23:34:27 +0000 (23:34 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 10 Nov 2015 18:01:49 +0000 (13:01 -0500)
(cherry picked from commit a2e83dbd2aa14de19a309ad13144151b56804674)

lib/sqlalchemy/dialects/postgresql/base.py

index 72b9fc1f43a1b0791c2b1435f45fbf7ef5958c98..e1568332ea0a75455e11ba4179a79ffc9c02f11d 100644 (file)
@@ -102,7 +102,7 @@ via foreign key constraint, a decision must be made as to how the ``.schema``
 is represented in those remote tables, in the case where that remote
 schema name is also a member of the current
 `Postgresql search path
-<http://www.postgresql.org/docs/devel/static/ddl-schemas.html#DDL-SCHEMAS-PATH>`_.
+<http://www.postgresql.org/docs/current/static/ddl-schemas.html#DDL-SCHEMAS-PATH>`_.
 
 By default, the Postgresql dialect mimics the behavior encouraged by
 Postgresql's own ``pg_get_constraintdef()`` builtin procedure.  This function
@@ -506,7 +506,7 @@ dialect in conjunction with the :class:`.Table` construct:
 .. seealso::
 
     `Postgresql CREATE TABLE options
-    <http://www.postgresql.org/docs/devel/static/sql-createtable.html>`_
+    <http://www.postgresql.org/docs/current/static/sql-createtable.html>`_
 
 ENUM Types
 ----------