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

Function DebugString

be/src/udf/udf-debug.h:33–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32template<typename T>
33inline std::string DebugString(const T& val) {
34 if (val.is_null) return "NULL";
35 std::stringstream ss;
36 ss << val.val;
37 return ss.str();
38}
39
40template<>
41inline std::string DebugString(const StringVal& val) {

Callers 15

TESTFunction · 0.70
ValidateMethod · 0.70
ExecuteMethod · 0.70
DebugPoolStatsMethod · 0.50
DebugStringMethod · 0.50
UpdateAggregatesMethod · 0.50
TEST_FFunction · 0.50
BlacklistMethod · 0.50
MaintenanceMethod · 0.50
SetupFakeNumaMethod · 0.50
InitCommonRuntimeMethod · 0.50
CheckValidAllocationMethod · 0.50

Calls 1

strMethod · 0.45

Tested by 6

TESTFunction · 0.56
ValidateMethod · 0.56
ExecuteMethod · 0.56
TEST_FFunction · 0.40
TESTFunction · 0.40
TEST_FFunction · 0.40