]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
minor docs fixes
authorFederico Caselli <cfederico87@gmail.com>
Thu, 13 Feb 2025 22:17:12 +0000 (23:17 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Thu, 13 Feb 2025 22:17:49 +0000 (23:17 +0100)
Change-Id: I7379bc6904daac711063734d2f43aa5f6e734a0f
(cherry picked from commit 13677447a3185f68f613173a23110eade050d6e8)

doc/build/core/pooling.rst
test/dialect/postgresql/test_query.py

index 526782b0551766d6c234b75ae3ec7a58f2190299..1a4865ba2b93b0abb140ba52290ab29e19cdd04d 100644 (file)
@@ -558,7 +558,7 @@ close these connections out.   The difference between FIFO and LIFO is
 basically whether or not its desirable for the pool to keep a full set of
 connections ready to go even during idle periods::
 
-    engine = create_engine("postgreql://", pool_use_lifo=True, pool_pre_ping=True)
+    engine = create_engine("postgresql://", pool_use_lifo=True, pool_pre_ping=True)
 
 Above, we also make use of the :paramref:`_sa.create_engine.pool_pre_ping` flag
 so that connections which are closed from the server side are gracefully
index 9198fb96aea6ecefe7a530ad3bf011d3c03e8dc8..f8bb9dbc79d35ca926da6f209b17e1e2242f3817 100644 (file)
@@ -1242,7 +1242,7 @@ class TupleTest(fixtures.TestBase):
 class ExtractTest(fixtures.TablesTest):
     """The rationale behind this test is that for many years we've had a system
     of embedding type casts into the expressions rendered by visit_extract()
-    on the postgreql platform.  The reason for this cast is not clear.
+    on the postgresql platform.  The reason for this cast is not clear.
     So here we try to produce a wide range of cases to ensure that these casts
     are not needed; see [ticket:2740].