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

Function EncodeFalseAscending

pkg/util/encoding/encoding.go:1165–1167  ·  view source on GitHub ↗

EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes.

(b []byte)

Source from the content-addressed store, hash-verified

1163
1164// EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes.
1165func EncodeFalseAscending(b []byte) []byte {
1166 return append(b, byte(False))
1167}
1168
1169// EncodeNotNullDescending is the descending equivalent of EncodeNotNullAscending.
1170func EncodeNotNullDescending(b []byte) []byte {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…