| 43 | namespace cmd { |
| 44 | |
| 45 | static void TransferString(std::vector<std::string>* vec) { |
| 46 | std::for_each(vec->begin(), vec->end(), [](std::string& str) { |
| 47 | if (str == ::fedb::codec::NONETOKEN) { |
| 48 | str = "-"; |
| 49 | } else if (str == ::fedb::codec::EMPTY_STRING) { |
| 50 | str = ""; |
| 51 | } |
| 52 | }); |
| 53 | } |
| 54 | |
| 55 | __attribute__((unused)) static void PrintSchema( |
| 56 | const google::protobuf::RepeatedPtrField<::fedb::common::ColumnDesc>& column_desc_field) { |
no outgoing calls
no test coverage detected