]> 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:04 +0000 (21:24 +0200)
(cherry picked from commit ac7d70dea89dfaf8e061bc8dd03a1ed7825069fc)

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

index 454b17f12a546f671958cb02c5748fe0b09bc8c4..cd21d0879101affdd39bf83a5e19c1145b32782a 100644 (file)
@@ -1586,7 +1586,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 9bf2e4933618ce29742855bb5fbb498ea38d9729..6c492a5b2501fd12d1db344b53a69ce4f04175f0 100644 (file)
@@ -242,7 +242,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 at least
 an order of magnitude.