Provide a hook for MySQL to add LIMIT to the UPDATE
(self, update_stmt)
| 6297 | return text |
| 6298 | |
| 6299 | def update_limit_clause(self, update_stmt): |
| 6300 | """Provide a hook for MySQL to add LIMIT to the UPDATE""" |
| 6301 | return None |
| 6302 | |
| 6303 | def delete_limit_clause(self, delete_stmt): |
| 6304 | """Provide a hook for MySQL to add LIMIT to the DELETE""" |