| 34 | } |
| 35 | |
| 36 | type ExecuteOperation struct { |
| 37 | Sql string `json:"sql"` |
| 38 | Dialect *string `json:"dialect"` |
| 39 | IgnoreError bool `json:"ignore_error"` |
| 40 | } |
| 41 | |
| 42 | func (o ExecuteOperation) Execute(basicRes context.BasicRes) errors.Error { |
| 43 | var err errors.Error |
nothing calls this directly
no outgoing calls
no test coverage detected