diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2019-10-01 21:00:35 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2019-10-01 21:00:35 +0000 |
| commit | 60e64a2c35e7e5a0125c5fefbf0caf531eeb2eda (patch) | |
| tree | 3f5cb7a25d164a3e7cebc9688286bed5c74a107c /lib/sqlalchemy/dialects/sqlite/base.py | |
| parent | 9a2a0f324c13b5a1b334a3982a766cb9f21f428e (diff) | |
| parent | cc718cccc0bf8a01abdf4068c7ea4f32c9322af6 (diff) | |
| download | sqlalchemy-60e64a2c35e7e5a0125c5fefbf0caf531eeb2eda.tar.gz | |
Merge "Run row value processors up front"
Diffstat (limited to 'lib/sqlalchemy/dialects/sqlite/base.py')
| -rw-r--r-- | lib/sqlalchemy/dialects/sqlite/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py index 7be0e06dc..defb64ec0 100644 --- a/lib/sqlalchemy/dialects/sqlite/base.py +++ b/lib/sqlalchemy/dialects/sqlite/base.py @@ -546,10 +546,10 @@ names are still addressable*:: 1 Therefore, the workaround applied by SQLAlchemy only impacts -:meth:`.ResultProxy.keys` and :meth:`.RowProxy.keys()` in the public API. In +:meth:`.ResultProxy.keys` and :meth:`.Row.keys()` in the public API. In the very specific case where an application is forced to use column names that contain dots, and the functionality of :meth:`.ResultProxy.keys` and -:meth:`.RowProxy.keys()` is required to return these dotted names unmodified, +:meth:`.Row.keys()` is required to return these dotted names unmodified, the ``sqlite_raw_colnames`` execution option may be provided, either on a per-:class:`.Connection` basis:: |
