MCPcopy Create free account
hub / github.com/cockroachdb/cockroachdb-parser / EncodeNullValue

Function EncodeNullValue

pkg/util/encoding/encoding.go:2584–2586  ·  view source on GitHub ↗

EncodeNullValue encodes a null value, appends it to the supplied buffer, and returns the final buffer.

(appendTo []byte, colIDDelta uint32)

Source from the content-addressed store, hash-verified

2582// EncodeNullValue encodes a null value, appends it to the supplied buffer, and
2583// returns the final buffer.
2584func EncodeNullValue(appendTo []byte, colIDDelta uint32) []byte {
2585 return EncodeValueTag(appendTo, colIDDelta, Null)
2586}
2587
2588// EncodeNotNullValue encodes a not null value, appends it to the supplied
2589// buffer, and returns the final buffer.

Callers

nothing calls this directly

Calls 1

EncodeValueTagFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…