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

Method WriteInt32

utils/wirerw.go:150–153  ·  view source on GitHub ↗

WriteInt32 writes an int32.

(val int32)

Source from the content-addressed store, hash-verified

148
149// WriteInt32 writes an int32.
150func (rw *WireRW) WriteInt32(val int32) *WireRW {
151 rw.WriteUint32(uint32(val))
152 return rw
153}
154
155// WriteInt64 writes an int64.
156func (rw *WireRW) WriteInt64(val int64) *WireRW {

Callers 7

record.goFile · 0.80
timetz.goFile · 0.80
array.goFile · 0.80
interval.goFile · 0.80
bit.goFile · 0.80
varbit.goFile · 0.80
int4.goFile · 0.80

Calls 1

WriteUint32Method · 0.95

Tested by

no test coverage detected