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
.. 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::