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

Function EncodeNullValue

pkg/util/encoding/encoding.go:1828–1830  ·  view source on GitHub ↗

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

(appendTo []byte, colID uint32)

Source from the content-addressed store, hash-verified

1826// EncodeNullValue encodes a null value, appends it to the supplied buffer, and
1827// returns the final buffer.
1828func EncodeNullValue(appendTo []byte, colID uint32) []byte {
1829 return EncodeValueTag(appendTo, colID, Null)
1830}
1831
1832// EncodeNotNullValue encodes a not null value, appends it to the supplied
1833// 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…