default_schema_name: Optional[str] = None
# indicates symbol names are
- # UPPERCASEd if they are case insensitive
+ # UPPERCASED if they are case insensitive
# within the database.
# if this is True, the methods normalize_name()
# and denormalize_name() must be provided.
supports_constraint_comments: bool
"""Indicates if the dialect supports comment DDL on constraints.
- .. versionadded: 2.0
+ .. versionadded:: 2.0
"""
_has_events = False
``REPEATABLE READ``. isolation level names will have underscores
converted to spaces before being passed along to the dialect.
* The names for the four standard isolation names to the extent that
- they are supported by the backend should be ``READ UNCOMMITTED``
+ they are supported by the backend should be ``READ UNCOMMITTED``,
``READ COMMITTED``, ``REPEATABLE READ``, ``SERIALIZABLE``
* if the dialect supports an autocommit option it should be provided
using the isolation level name ``AUTOCOMMIT``.