本文整理汇总了Golang中github.com/cockroachdb/cockroach/storage/engine.MVCCKey类的典型用法代码示例。如果您正苦于以下问题:Golang MVCCKey类的具体用法?Golang MVCCKey怎么用?Golang MVCCKey使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MVCCKey类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: decodeAbortCacheMVCCKey
func decodeAbortCacheMVCCKey(
encKey engine.MVCCKey, dest []byte,
) (*uuid.UUID, error) {
if encKey.IsValue() {
return nil, util.Errorf("key %s is not a raw MVCC value", encKey)
}
return keys.DecodeAbortCacheKey(encKey.Key, dest)
}
示例2: decodeSequenceCacheMVCCKey
func decodeSequenceCacheMVCCKey(encKey engine.MVCCKey, dest []byte) ([]byte, uint32, uint32, error) {
if encKey.IsValue() {
return nil, 0, 0, util.Errorf("key %s is not a raw MVCC value", encKey)
}
return decodeSequenceCacheKey(encKey.Key, dest)
}