| 37 | namespace { |
| 38 | |
| 39 | std::string getFunctionName( |
| 40 | const std::string& prefix, |
| 41 | const std::string& functionName) { |
| 42 | return prefix.empty() ? functionName |
| 43 | : fmt::format("{}.{}", prefix, functionName); |
| 44 | } |
| 45 | |
| 46 | TypePtr deserializeType(const std::string& input) { |
| 47 | // Use hive type parser/serializer. |