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

Function TokenizeDebugActions

be/src/util/debug-util.cc:382–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380}
381
382DebugActionTokens TokenizeDebugActions(const string& debug_actions) {
383 DebugActionTokens results;
384 vector<string> actions;
385 split(actions, debug_actions, is_any_of("|"), token_compress_on);
386 for (const string& a : actions) {
387 vector<string> components;
388 split(components, a, is_any_of(":"), token_compress_on);
389 results.push_back(components);
390 }
391 return results;
392}
393
394vector<string> TokenizeDebugActionParams(const string& action) {
395 vector<string> tokens;

Callers 2

DebugOptionsMethod · 0.85
DebugActionImplFunction · 0.85

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected