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

Function DecodeBytesAscending

pkg/util/encoding/encoding.go:559–561  ·  view source on GitHub ↗

DecodeBytesAscending decodes a []byte value from the input buffer which was encoded using EncodeBytesAscending. The decoded bytes are appended to r. The remainder of the input buffer and the decoded []byte are returned.

(b []byte, r []byte)

Source from the content-addressed store, hash-verified

557// are appended to r. The remainder of the input buffer and the
558// decoded []byte are returned.
559func DecodeBytesAscending(b []byte, r []byte) ([]byte, []byte, error) {
560 return decodeBytesInternal(b, r, ascendingEscapes, true)
561}
562
563// DecodeBytesDescending decodes a []byte value from the input buffer
564// which was encoded using EncodeBytesDescending. The decoded bytes

Callers 1

Calls 1

decodeBytesInternalFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…