diff --git a/src/crate/client/sqlalchemy/compat/core20.py b/src/crate/client/sqlalchemy/compat/core20.py index 03bc2ead..6f128876 100644 --- a/src/crate/client/sqlalchemy/compat/core20.py +++ b/src/crate/client/sqlalchemy/compat/core20.py @@ -133,18 +133,6 @@ def visit_update(self, update_stmt, **kw): text += ', '.join(set_clauses) # [20] CrateDB patch end. - """ - # TODO: Complete SA20 migration. - # This is the column name/value joining code from SA20. - # It may be sensible to use this procedure instead of the old one. - text += ", ".join( - expr + "=" + value - for _, expr, value, _ in cast( - "List[Tuple[Any, str, str, Any]]", crud_params - ) - ) - """ - if self.implicit_returning or update_stmt._returning: if self.returning_precedes_values: text += " " + self.returning_clause(