MCPcopy Create free account
hub / github.com/bytedance/bolt / appendNull

Method appendNull

bolt/serializers/PrestoSerializer.cpp:1364–1373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1362 }
1363
1364 void appendNull() {
1365 if (nonNullCount_ && nullCount_ == 0) {
1366 nulls_.appendBool(false, nonNullCount_);
1367 }
1368 nulls_.appendBool(true, 1);
1369 ++nullCount_;
1370 if (hasLengths_) {
1371 appendLength(0);
1372 }
1373 }
1374
1375 void appendNonNull(int32_t count = 1) {
1376 if (nullCount_ > 0) {

Callers 11

serializeFlatVectorFunction · 0.45
BOOLEAN>Method · 0.45
serializeWrappedFunction · 0.45
serializeRowVectorFunction · 0.45
serializeArrayVectorFunction · 0.45
serializeMapVectorFunction · 0.45
serializeBiasVectorFunction · 0.45
UNKNOWN>Method · 0.45
serializeConstantVectorFunction · 0.45

Calls 1

appendBoolMethod · 0.80

Tested by

no test coverage detected