diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-10-19 10:19:29 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-10-19 13:13:15 -0400 |
commit | 3e49b8d0519aa024842206a2fb664a4ad83796d6 (patch) | |
tree | 9eb3cf01a68c42bb77a0bf76e99865d7c6370262 /lib/sqlalchemy/sql/compiler.py | |
parent | 296c84313ab29bf9599634f38caaf7dd092e4e23 (diff) | |
download | sqlalchemy-3e49b8d0519aa024842206a2fb664a4ad83796d6.tar.gz |
Ensure no compiler visit method tries to access .statement
Fixed structural compiler issue where some constructs such as MySQL /
PostgreSQL "on conflict / on duplicate key" would rely upon the state of
the :class:`_sql.Compiler` object being fixed against their statement as
the top level statement, which would fail in cases where those statements
are branched from a different context, such as a DDL construct linked to a
SQL statement.
Fixes: #5656
Change-Id: I568bf40adc7edcf72ea6c7fd6eb9d07790de189e
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 8718e15ea..10499975c 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -377,12 +377,14 @@ class Compiled(object): schema_translate_map = None - execution_options = util.immutabledict() + execution_options = util.EMPTY_DICT """ Execution options propagated from the statement. In some cases, sub-elements of the statement can modify these. """ + _annotations = util.EMPTY_DICT + compile_state = None """Optional :class:`.CompileState` object that maintains additional state used by the compiler. @@ -474,6 +476,7 @@ class Compiled(object): if statement is not None: self.statement = statement self.can_execute = statement.supports_execution + self._annotations = statement._annotations if self.can_execute: self.execution_options = statement._execution_options self.string = self.process(self.statement, **compile_kwargs) @@ -799,6 +802,44 @@ class SQLCompiler(Compiled): self._process_parameters_for_postcompile(_populate_self=True) @property + def current_executable(self): + """Return the current 'executable' that is being compiled. + + This is currently the :class:`_sql.Select`, :class:`_sql.Insert`, + :class:`_sql.Update`, :class:`_sql.Delete`, + :class:`_sql.CompoundSelect` object that is being compiled. + Specifically it's assigned to the ``self.stack`` list of elements. + + When a statement like the above is being compiled, it normally + is also assigned to the ``.statement`` attribute of the + :class:`_sql.Compiler` object. However, all SQL constructs are + ultimately nestable, and this attribute should never be consulted + by a ``visit_`` method, as it is not guaranteed to be assigned + nor guaranteed to correspond to the current statement being compiled. + + .. versionadded:: 1.3.21 + + For compatibility with previous versions, use the following + recipe:: + + statement = getattr(self, "current_executable", False) + if statement is False: + statement = self.stack[-1]["selectable"] + + For versions 1.4 and above, ensure only .current_executable + is used; the format of "self.stack" may change. + + + """ + try: + return self.stack[-1]["selectable"] + except IndexError as ie: + util.raise_( + IndexError("Compiler does not have a stack entry"), + replace_context=ie, + ) + + @property def prefetch(self): return list(self.insert_prefetch + self.update_prefetch) |