| 39 | DEFINE_uint32(bits, 6, "hyperloglog bit width used for cardinality estimation"); |
| 40 | |
| 41 | bool string_not_empty(const char*, const std::string& value) { |
| 42 | if (0 == value.length()) { return false; } |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | DEFINE_validator(input, &string_not_empty); |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected