MCPcopy Create free account
hub / github.com/BlazingDB/blazingsql / is_window_function

Function is_window_function

engine/src/parser/expression_utils.cpp:625–625  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

623bool is_merge_aggregate(std::string query_part) { return (query_part.find(LOGICAL_MERGE_AGGREGATE_TEXT) != std::string::npos); }
624
625bool is_window_function(std::string query_part) { return (query_part.find("OVER") != std::string::npos); }
626
627bool is_generate_overlaps(std::string query_part) { return (query_part.find(LOGICAL_GENERATE_OVERLAPS_TEXT) != std::string::npos); }
628

Calls

no outgoing calls

Tested by

no test coverage detected