Skip to content

Commit 4fc4461

Browse files
committed
SA20: Remove leftover backlog comment
1 parent 2ee91d5 commit 4fc4461

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/crate/client/sqlalchemy/compat/core20.py

-12
Original file line numberDiff line numberDiff line change
@@ -133,18 +133,6 @@ def visit_update(self, update_stmt, **kw):
133133
text += ', '.join(set_clauses)
134134
# [20] CrateDB patch end.
135135

136-
"""
137-
# TODO: Complete SA20 migration.
138-
# This is the column name/value joining code from SA20.
139-
# It may be sensible to use this procedure instead of the old one.
140-
text += ", ".join(
141-
expr + "=" + value
142-
for _, expr, value, _ in cast(
143-
"List[Tuple[Any, str, str, Any]]", crud_params
144-
)
145-
)
146-
"""
147-
148136
if self.implicit_returning or update_stmt._returning:
149137
if self.returning_precedes_values:
150138
text += " " + self.returning_clause(

0 commit comments

Comments
 (0)