| 35 | DEFINE_bool(part_by_in, false, "partition by in-degree"); |
| 36 | |
| 37 | bool string_not_empty(const char*, const std::string& value) { |
| 38 | if (0 == value.length()) { return false; } |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | DEFINE_validator(input, &string_not_empty); |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected