(step, sql string, err error)
| 518 | } |
| 519 | |
| 520 | func newErrPreprocessingBatch(step, sql string, err error) ErrPreprocessingBatch { |
| 521 | return ErrPreprocessingBatch{step: step, sql: sql, err: err} |
| 522 | } |
| 523 | |
| 524 | func (e ErrPreprocessingBatch) Error() string { |
| 525 | // intentionally not including the SQL query in the error message |
no outgoing calls
no test coverage detected