| 63 | } |
| 64 | |
| 65 | std::optional<StreamingProcessMetadata> getWindowFunctionMetadata( |
| 66 | const std::string& name) { |
| 67 | auto sanitizedName = sanitizeName(name); |
| 68 | if (auto func = getWindowFunctionEntry(sanitizedName)) { |
| 69 | return func.value()->metadata; |
| 70 | } |
| 71 | return std::nullopt; |
| 72 | } |
| 73 | |
| 74 | std::optional<std::vector<FunctionSignaturePtr>> getWindowFunctionSignatures( |
| 75 | const std::string& name) { |
no test coverage detected