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

Function EncodeUntaggedIntValue

pkg/util/encoding/encoding.go:1856–1858  ·  view source on GitHub ↗

EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and returns the final buffer.

(appendTo []byte, i int64)

Source from the content-addressed store, hash-verified

1854// EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and
1855// returns the final buffer.
1856func EncodeUntaggedIntValue(appendTo []byte, i int64) []byte {
1857 return EncodeNonsortingStdlibVarint(appendTo, i)
1858}
1859
1860const floatValueEncodedLength = uint64AscendingEncodedLength
1861

Callers 1

EncodeIntValueFunction · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…