MCPcopy Create free account
hub / github.com/apache/impala / UntimedProfileNode

Function UntimedProfileNode

be/src/util/runtime-profile.cc:120–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120static bool UntimedProfileNode(const string& name) {
121 return name.compare(RuntimeProfile::FRAGMENT_INSTANCE_LIFECYCLE_TIMINGS) == 0
122 || name.compare(RuntimeProfile::BUFFER_POOL) == 0
123 || name.compare(RuntimeProfile::DEQUEUE) == 0
124 || name.compare(RuntimeProfile::ENQUEUE) == 0
125 || name.compare(RuntimeProfile::HASH_TABLE) == 0
126 || name.rfind(RuntimeProfile::PREFIX_FILTER, 0) == 0
127 || name.rfind(RuntimeProfile::PREFIX_GROUPING_AGGREGATOR, 0) == 0;
128}
129
130static RuntimeProfile::Verbosity DefaultVerbosity() {
131 return FLAGS_gen_experimental_profile ? RuntimeProfile::Verbosity::DEFAULT :

Calls 2

rfindMethod · 0.80
compareMethod · 0.65

Tested by

no test coverage detected