MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / appendColumnStrings

Method appendColumnStrings

pj_datastore/src/chunk.cpp:247–251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

245}
246
247void TopicChunkBuilder::appendColumnStrings(
248 std::size_t col_index, Span<const uint32_t> offsets, Span<const char> data) {
249 PJ_ASSERT(col_index < columns_.size(), "col_index out of bounds");
250 columns_[col_index].appendStringsBulk(offsets, data);
251}
252
253void TopicChunkBuilder::appendColumnValidity(std::size_t col_index, BitSpan validity) {
254 PJ_ASSERT(col_index < columns_.size(), "col_index out of bounds");

Callers 2

TESTFunction · 0.80

Calls 2

appendStringsBulkMethod · 0.80
sizeMethod · 0.45

Tested by 1

TESTFunction · 0.64