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

Method DebugString

be/src/exprs/slot-ref.cc:126–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126string SlotRef::DebugString() const {
127 stringstream out;
128 out << "SlotRef(slot_id=" << slot_id_
129 << " tuple_idx=" << tuple_idx_ << " slot_offset=" << slot_offset_
130 << " tuple_is_nullable=" << tuple_is_nullable_
131 << " null_indicator=" << null_indicator_offset_
132 << ScalarExpr::DebugString() << ")";
133 return out.str();
134}
135
136void SlotRef::AssignFnCtxIdx(int* next_fn_ctx_idx) {
137 if (!type_.IsStructType()) {

Callers 1

InitMethod · 0.45

Calls 2

DebugStringFunction · 0.70
strMethod · 0.45

Tested by

no test coverage detected