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

Method ReadBoolean

be/src/exec/scanner-context.inline.h:121–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121inline bool ScannerContext::Stream::ReadBoolean(bool* b, Status* status) {
122 uint8_t* val;
123 RETURN_IF_FALSE(ReadBytes(1, &val, status));
124 *b = (*val != 0);
125 return true;
126}
127
128inline bool ScannerContext::Stream::ReadInt(int32_t* val, Status* status, bool peek) {
129 uint8_t* bytes;

Callers 2

ReadFileHeaderMethod · 0.80
ReadFileHeaderMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected