From: Gord Thompson Date: Sun, 11 Apr 2021 17:39:41 +0000 (-0600) Subject: Fix supports_schemas entry in changelog_14.rst X-Git-Tag: rel_1_4_8~14^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fd56da3000773fcd757c67c1c021612e9466a0d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index b71e9cefdd..310270456a 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::