| 44 | } |
| 45 | |
| 46 | TypePtr deserializeType(const std::string& input) { |
| 47 | // Use hive type parser/serializer. |
| 48 | return type::fbhive::HiveTypeParser().parse(input); |
| 49 | } |
| 50 | |
| 51 | RowTypePtr deserializeArgTypes(const std::vector<std::string>& argTypes) { |
| 52 | const size_t argCount = argTypes.size(); |
no test coverage detected