]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix supports_schemas entry in changelog_14.rst
authorGord Thompson <gord@gordthompson.com>
Sun, 11 Apr 2021 17:39:41 +0000 (11:39 -0600)
committerGord Thompson <gord@gordthompson.com>
Sun, 11 Apr 2021 17:39:41 +0000 (11:39 -0600)
The default for supports_schemas is ``True`` so
third-party dialects would set it to ``False``
if they want to *disable* the schema-level tests.

Change-Id: I63aea1ed14fc1f08ec7d5c8860097414ac607322

doc/build/changelog/changelog_14.rst

index b71e9cefdd4e4530e55398115283280fc5b6f0fb..310270456a27585e34aae7490015ce7453685943 100644 (file)
@@ -117,8 +117,8 @@ This document details individual issue-level changes made throughout
     .. change::
         :tags: change, tests
 
-        Added a new flag to :class:`.DefaultDialect` called ``supports_schema``;
-        third party dialects may set this flag to ``True`` to enable SQLAlchemy's
+        Added a new flag to :class:`.DefaultDialect` called ``supports_schemas``;
+        third party dialects may set this flag to ``False`` to disable SQLAlchemy's
         schema-level tests when running the test suite for a third party dialect.
 
     .. change::