MCPcopy Create free account
hub / github.com/araddon/qlbridge / Key

Struct Key

datasource/sqlite/conn.go:337–339  ·  view source on GitHub ↗

Key implements Key and Sort interfaces.

Source from the content-addressed store, hash-verified

335
336// Key implements Key and Sort interfaces.
337type Key struct {
338 Id uint64
339}
340
341func NewKey(key uint64) *Key { return &Key{key} }
342func (m *Key) Key() driver.Value { return driver.Value(m.Id) }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected