Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
55
string RecursionStack(int level) {
56
if (level == 0) return GetStackTrace();
57
return RecursionStack(level - 1);
58
}
59
60
TEST(DebugUtil, StackDump) {
61
cout <<
"Stack: "
<< endl << GetStackTrace() << endl;
Callers
1
TEST
Function · 0.85
Calls
1
GetStackTrace
Function · 0.70
Tested by
no test coverage detected