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

Function RecursionStack

be/src/util/debug-util-test.cc:55–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55string RecursionStack(int level) {
56 if (level == 0) return GetStackTrace();
57 return RecursionStack(level - 1);
58}
59
60TEST(DebugUtil, StackDump) {
61 cout << "Stack: " << endl << GetStackTrace() << endl;

Callers 1

TESTFunction · 0.85

Calls 1

GetStackTraceFunction · 0.70

Tested by

no test coverage detected