()
| 62 | } |
| 63 | |
| 64 | func (c CompositeHooks) OnRowCountComplete() error { |
| 65 | for _, h := range c { |
| 66 | if h == nil { |
| 67 | continue |
| 68 | } |
| 69 | if err := h.OnRowCountComplete(); err != nil { |
| 70 | return err |
| 71 | } |
| 72 | } |
| 73 | return nil |
| 74 | } |
| 75 | |
| 76 | func (c CompositeHooks) OnBeforeRowCopy() error { |
| 77 | for _, h := range c { |
nothing calls this directly
no test coverage detected