Provide a hook for MySQL to add LIMIT to the DELETE
(self, delete_stmt)
| 6301 | return None |
| 6302 | |
| 6303 | def delete_limit_clause(self, delete_stmt): |
| 6304 | """Provide a hook for MySQL to add LIMIT to the DELETE""" |
| 6305 | return None |
| 6306 | |
| 6307 | def update_tables_clause(self, update_stmt, from_table, extra_froms, **kw): |
| 6308 | """Provide a hook to override the initial table clause |