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

Function DecodeUntaggedIntValue

pkg/util/encoding/encoding.go:2091–2094  ·  view source on GitHub ↗

DecodeUntaggedIntValue decodes a value encoded by EncodeUntaggedIntValue.

(b []byte)

Source from the content-addressed store, hash-verified

2089
2090// DecodeUntaggedIntValue decodes a value encoded by EncodeUntaggedIntValue.
2091func DecodeUntaggedIntValue(b []byte) (remaining []byte, i int64, err error) {
2092 b, _, i, err = DecodeNonsortingStdlibVarint(b)
2093 return b, i, err
2094}
2095
2096// DecodeFloatValue decodes a value encoded by EncodeFloatValue.
2097func DecodeFloatValue(b []byte) (remaining []byte, f float64, err error) {

Callers 1

DecodeIntValueFunction · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…