]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Update links from initd.org to psycopg.org (#11244)
authorStefan Wojcik <5014112+yawhide@users.noreply.github.com>
Mon, 8 Apr 2024 19:23:19 +0000 (15:23 -0400)
committerFederico Caselli <cfederico87@gmail.com>
Mon, 8 Apr 2024 19:24:20 +0000 (21:24 +0200)
(cherry picked from commit ac7d70dea89dfaf8e061bc8dd03a1ed7825069fc)

doc/build/changelog/migration_12.rst
lib/sqlalchemy/dialects/postgresql/psycopg2.py

index d5676e2854dfc731734f1bf11f3e9b9d1f89257b..e0fb0e4140857891390f4dc4fefc1f59a1734da2 100644 (file)
@@ -1557,7 +1557,7 @@ Support for Batch Mode / Fast Execution Helpers
 
 The psycopg2 ``cursor.executemany()`` method has been identified as performing
 poorly, particularly with INSERT statements.   To alleviate this, psycopg2
-has added `Fast Execution Helpers <https://initd.org/psycopg/docs/extras.html#fast-execution-helpers>`_
+has added `Fast Execution Helpers <https://www.psycopg.org/docs/extras.html#fast-execution-helpers>`_
 which rework statements into fewer server round trips by sending multiple
 DML statements in batch.   SQLAlchemy 1.2 now includes support for these
 helpers to be used transparently whenever the :class:`_engine.Engine` makes use
index 80033d0d7ed4bbb9fd5252e21fc13ca134795d9f..c2bd530ecd74bf86840964344eacd63dab87f5b2 100644 (file)
@@ -231,7 +231,7 @@ Psycopg2 Fast Execution Helpers
 
 Modern versions of psycopg2 include a feature known as
 `Fast Execution Helpers \
-<https://initd.org/psycopg/docs/extras.html#fast-execution-helpers>`_, which
+<https://www.psycopg.org/docs/extras.html#fast-execution-helpers>`_, which
 have been shown in benchmarking to improve psycopg2's executemany()
 performance, primarily with INSERT statements, by multiple orders of magnitude.
 SQLAlchemy internally makes use of these extensions for ``executemany()`` style