本文整理汇总了Golang中github.com/cockroachdb/cockroach/pkg/util/uuid.UUID.Short方法的典型用法代码示例。如果您正苦于以下问题:Golang UUID.Short方法的具体用法?Golang UUID.Short怎么用?Golang UUID.Short使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cockroachdb/cockroach/pkg/util/uuid.UUID
的用法示例。
在下文中一共展示了UUID.Short方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: assertTS
// assertTS is a helper function for layeredIntervalTestCase
// validators. It queries the timestamp cache for the given keys and
// reports a test error if it doesn't match the given timestamp and
// transaction ID.
func assertTS(
t *testing.T,
tc *timestampCache,
start, end roachpb.Key,
expectedTS hlc.Timestamp,
expectedTxnID *uuid.UUID,
) {
var keys string
if len(end) == 0 {
keys = fmt.Sprintf("%q", start)
} else {
keys = fmt.Sprintf("%q-%q", start, end)
}
ts, txnID, _ := tc.GetMaxRead(start, end)
if !ts.Equal(expectedTS) {
t.Errorf("expected %s to have timestamp %v, found %v", keys, expectedTS, ts)
}
if expectedTxnID == nil {
if txnID != nil {
t.Errorf("expected %s to have no txn id, but found %s", keys, txnID.Short())
}
} else {
if txnID == nil {
t.Errorf("expected %s to have txn id %s, but found nil", keys, expectedTxnID.Short())
} else if *txnID != *expectedTxnID {
t.Errorf("expected %s to have txn id %s, but found %s",
keys, expectedTxnID.Short(), txnID.Short())
}
}
}