MCPcopy Create free account
hub / github.com/bytedance/bolt / getWindowFunctionMetadata

Function getWindowFunctionMetadata

bolt/exec/WindowFunction.cpp:65–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65std::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
74std::optional<std::vector<FunctionSignaturePtr>> getWindowFunctionSignatures(
75 const std::string& name) {

Callers 2

supportRowsStreamingMethod · 0.85
ignorePeerMethod · 0.85

Calls 3

sanitizeNameFunction · 0.85
getWindowFunctionEntryFunction · 0.85
valueMethod · 0.45

Tested by

no test coverage detected