MCPcopy Create free account
hub / github.com/cloudspannerecosystem/spanner-cli / nullInt64ToString

Function nullInt64ToString

decoder.go:311–317  ·  view source on GitHub ↗
(v spanner.NullInt64)

Source from the content-addressed store, hash-verified

309}
310
311func nullInt64ToString(v spanner.NullInt64) string {
312 if v.Valid {
313 return fmt.Sprintf("%d", v.Int64)
314 } else {
315 return "NULL"
316 }
317}
318
319func nullNumericToString(v spanner.NullNumeric) string {
320 if v.Valid {

Callers 1

DecodeColumnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected