(params int, columns int, context any)
| 36 | } |
| 37 | |
| 38 | func (s *Stmt) Rest(params int, columns int, context any) { |
| 39 | s.Params = params |
| 40 | s.Columns = columns |
| 41 | s.Context = context |
| 42 | s.ResetParams() |
| 43 | } |
| 44 | |
| 45 | func (s *Stmt) ResetParams() { |
| 46 | s.Args = make([]any, s.Params) |
nothing calls this directly
no test coverage detected