NotNull is a baker filter that discards records having null fields.
| 22 | |
| 23 | // NotNull is a baker filter that discards records having null fields. |
| 24 | type NotNull struct { |
| 25 | numFilteredLines int64 |
| 26 | cfg *NotNullConfig |
| 27 | fields []baker.FieldIndex |
| 28 | } |
| 29 | |
| 30 | // NewNotNull creates and configures a new NotNull filter. |
| 31 | func NewNotNull(cfg baker.FilterParams) (baker.Filter, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected