コード例 #1
0
ファイル: store_test.go プロジェクト: yangxuanjia/tidb
func mustDel(c *C, txn kv.Transaction) {
	for i := startIndex; i < testCount; i++ {
		val := encodeInt(i * indexStep)
		err := txn.Delete(val)
		c.Assert(err, IsNil)
	}
}