diff options
| author | Federico Caselli <cfederico87@gmail.com> | 2023-04-29 12:07:32 +0200 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-04-30 11:14:22 -0400 |
| commit | 23a4538b0b1e750d09392e1c7eca67b1356294d8 (patch) | |
| tree | 920641296ff3cd064cf0b33673475a1427d11499 /lib/sqlalchemy/engine | |
| parent | 39c8e95b1f50190ff30a836b2bcf13ba2cacc052 (diff) | |
| download | sqlalchemy-23a4538b0b1e750d09392e1c7eca67b1356294d8.tar.gz | |
Support control char reflection in mysql mariadb
Fixed issues regarding reflection of comments for :class:`_schema.Table`
and :class:`_schema.Column` objects, where the comments contained control
characters such as newlines. Additional testing support for these
characters as well as extended Unicode characters in table and column
comments (the latter of which aren't supported by MySQL/MariaDB) added to
testing overall.
Fixes: #9722
Change-Id: Id18bf758fdb6231eb705c61eeaf74bb9fa472601
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/row.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/row.py b/lib/sqlalchemy/engine/row.py index da781334a..95789ddba 100644 --- a/lib/sqlalchemy/engine/row.py +++ b/lib/sqlalchemy/engine/row.py @@ -39,8 +39,8 @@ else: if TYPE_CHECKING: from .result import _KeyType - from .result import RMKeyView from .result import _ProcessorsType + from .result import RMKeyView _T = TypeVar("_T", bound=Any) _TP = TypeVar("_TP", bound=Tuple[Any, ...]) |
