| 2071 | } |
| 2072 | |
| 2073 | static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() { |
| 2074 | // T... -> array(varchar) |
| 2075 | return {exec::FunctionSignatureBuilder() |
| 2076 | .typeVariable("T") |
| 2077 | .returnType("array(varchar)") |
| 2078 | .argumentType("T") |
| 2079 | .variableArity() |
| 2080 | .build()}; |
| 2081 | } |
| 2082 | }; |
| 2083 | |
| 2084 | BOLT_DECLARE_VECTOR_FUNCTION( |
nothing calls this directly
no test coverage detected