MCPcopy Create free account
hub / github.com/dolthub/doltgresql / WriteInt64

Method WriteInt64

utils/wirerw.go:156–159  ·  view source on GitHub ↗

WriteInt64 writes an int64.

(val int64)

Source from the content-addressed store, hash-verified

154
155// WriteInt64 writes an int64.
156func (rw *WireRW) WriteInt64(val int64) *WireRW {
157 rw.WriteUint64(uint64(val))
158 return rw
159}
160
161// WriteUint8 writes a uint8.
162func (rw *WireRW) WriteUint8(val uint8) *WireRW {

Callers 6

timestamp.goFile · 0.80
timetz.goFile · 0.80
interval.goFile · 0.80
time.goFile · 0.80
timestamptz.goFile · 0.80
int8.goFile · 0.80

Calls 1

WriteUint64Method · 0.95

Tested by

no test coverage detected