MCPcopy Create free account
hub / github.com/apache/arrow / ReadFixedLength

Method ReadFixedLength

cpp/src/parquet/stream_reader.cc:321–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319}
320
321void StreamReader::ReadFixedLength(char* ptr, int len) {
322 CheckColumn(Type::FIXED_LEN_BYTE_ARRAY, ConvertedType::NONE, len);
323 FixedLenByteArray flba;
324 Read(&flba);
325 std::memcpy(ptr, flba.ptr, len);
326}
327
328void StreamReader::Read(ByteArray* v) {
329 const auto& node = nodes_[column_index_];

Callers

nothing calls this directly

Calls 1

ReadFunction · 0.70

Tested by

no test coverage detected