| 42 | namespace { |
| 43 | |
| 44 | std::string serializeType(const TypePtr& type) { |
| 45 | // Use hive type serializer. |
| 46 | return type::fbhive::HiveTypeSerializer::serialize(type); |
| 47 | } |
| 48 | |
| 49 | class RemoteFunction : public exec::VectorFunction { |
| 50 | public: |
no test coverage detected