NotNullConfig holds configuration parameters for the NotNull filter.
| 17 | |
| 18 | // NotNullConfig holds configuration parameters for the NotNull filter. |
| 19 | type NotNullConfig struct { |
| 20 | Fields []string `help:"Fields is the list of fields to check for null/empty values" required:"true"` |
| 21 | } |
| 22 | |
| 23 | // NotNull is a baker filter that discards records having null fields. |
| 24 | type NotNull struct { |
nothing calls this directly
no outgoing calls
no test coverage detected