summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2021-04-11 11:39:41 -0600
committerGord Thompson <gord@gordthompson.com>2021-04-11 11:39:41 -0600
commit1fd56da3000773fcd757c67c1c021612e9466a0d (patch)
tree6dc735fd61158aa5c231c002238bf8872c1cd25d
parent7ea0d10c67b652895442c3a103e0813769309b9c (diff)
downloadsqlalchemy-1fd56da3000773fcd757c67c1c021612e9466a0d.tar.gz
Fix supports_schemas entry in changelog_14.rst
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
-rw-r--r--doc/build/changelog/changelog_14.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst
index b71e9cefd..310270456 100644
--- a/doc/build/changelog/changelog_14.rst
+++ b/doc/build/changelog/changelog_14.rst
@@ -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::