| 50 | explicit ScalarAggregateOptions(bool skip_nulls = true, uint32_t min_count = 1); |
| 51 | static constexpr const char kTypeName[] = "ScalarAggregateOptions"; |
| 52 | static ScalarAggregateOptions Defaults() { return ScalarAggregateOptions{}; } |
| 53 | |
| 54 | /// If true (the default), null values are ignored. Otherwise, if any value is null, |
| 55 | /// emit null. |