Add dialect options to this INSERT/UPDATE/DELETE object. e.g.:: upd = table.update().dialect_options(mysql_limit=10) .. versionadded: 1.4 - this method supersedes the dialect options associated with the constructor.
(self, **opt: Any)
| 464 | |
| 465 | @_generative |
| 466 | def with_dialect_options(self, **opt: Any) -> Self: |
| 467 | """Add dialect options to this INSERT/UPDATE/DELETE object. |
| 468 | |
| 469 | e.g.:: |
| 470 | |
| 471 | upd = table.update().dialect_options(mysql_limit=10) |
| 472 | |
| 473 | .. versionadded: 1.4 - this method supersedes the dialect options |
| 474 | associated with the constructor. |
| 475 | |
| 476 | |
| 477 | """ |
| 478 | self._validate_dialect_kwargs(opt) |
| 479 | return self |
| 480 | |
| 481 | @_generative |
| 482 | def return_defaults( |