(self)
| 273 | ) |
| 274 | |
| 275 | def _cant_mix_formats_error(self) -> NoReturn: |
| 276 | raise exc.InvalidRequestError( |
| 277 | "Can't mix single and multiple VALUES " |
| 278 | "formats in one INSERT statement; one style appends to a " |
| 279 | "list while the other replaces values, so the intent is " |
| 280 | "ambiguous." |
| 281 | ) |
| 282 | |
| 283 | |
| 284 | @CompileState.plugin_for("default", "insert") |
no outgoing calls
no test coverage detected