当前位置: 首页>>代码示例>>Golang>>正文


Golang client.Txn类代码示例

本文整理汇总了Golang中github.com/cockroachdb/cockroach/client.Txn的典型用法代码示例。如果您正苦于以下问题:Golang Txn类的具体用法?Golang Txn怎么用?Golang Txn使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Txn类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: incCmd

// incCmd adds one to the value of c.key in the env and writes
// it to the db. If c.key isn't in the db, writes 1.
func incCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	r, pErr := txn.Inc(c.getKey(), 1)
	if pErr != nil {
		return pErr
	}
	c.env[c.key] = r.ValueInt()
	c.debug = fmt.Sprintf("[%d]", r.ValueInt())
	return nil
}
开发者ID:billhongs,项目名称:cockroach,代码行数:11,代码来源:txn_correctness_test.go

示例2: incCmd

// incCmd adds one to the value of c.key in the env (as determined by
// a previous read or write, or else assumed to be zero) and writes it
// to the db.
func incCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	r := c.env[c.key] + 1
	if pErr := txn.Put(c.getKey(), r); pErr != nil {
		return pErr
	}
	c.env[c.key] = r
	c.debug = fmt.Sprintf("[%d]", r)
	return nil
}
开发者ID:nieyy,项目名称:cockroach,代码行数:12,代码来源:txn_correctness_test.go

示例3: readCmd

// readCmd reads a value from the db and stores it in the env.
func readCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	r, pErr := txn.Get(c.getKey())
	if pErr != nil {
		return pErr
	}
	if r.Value != nil {
		c.env[c.key] = r.ValueInt()
		c.debug = fmt.Sprintf("[%d ts=%d]", r.ValueInt(), r.Timestamp())
	}
	return nil
}
开发者ID:billhongs,项目名称:cockroach,代码行数:12,代码来源:txn_correctness_test.go

示例4: sumCmd

// sumCmd sums the values of all keys != c.key read during the transaction and
// writes the result to the db.
func sumCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	sum := int64(0)
	for k, v := range c.env {
		if k != c.key {
			sum += v
		}
	}
	r, pErr := txn.Inc(c.getKey(), sum)
	c.debug = fmt.Sprintf("[%d ts=%d]", sum, r.Timestamp())
	return pErr
}
开发者ID:billhongs,项目名称:cockroach,代码行数:13,代码来源:txn_correctness_test.go

示例5: getRangeTree

// GetRangeTree fetches the RangeTree proto and sets up the range tree context.
func getRangeTree(txn *client.Txn) (*treeContext, error) {
	tree := &proto.RangeTree{}
	if err := txn.GetProto(keys.RangeTreeRoot, tree); err != nil {
		return nil, err
	}
	return &treeContext{
		txn:   txn,
		tree:  tree,
		dirty: false,
		nodes: map[string]cachedNode{},
	}, nil
}
开发者ID:Hellblazer,项目名称:cockroach,代码行数:13,代码来源:range_tree.go

示例6: getRangeTree

// GetRangeTree fetches the RangeTree proto and sets up the range tree context.
func getRangeTree(txn *client.Txn) (*treeContext, *roachpb.Error) {
	tree := new(RangeTree)
	if pErr := txn.GetProto(keys.RangeTreeRoot, tree); pErr != nil {
		return nil, pErr
	}
	return &treeContext{
		txn:   txn,
		tree:  tree,
		dirty: false,
		nodes: map[string]cachedNode{},
	}, nil
}
开发者ID:petermattis,项目名称:cockroach,代码行数:13,代码来源:range_tree.go

示例7: incCmd

// incCmd adds one to the value of c.key in the env (as determined by
// a previous read or write, or else assumed to be zero) and writes it
// to the db.
func incCmd(c *cmd, txn *client.Txn, t *testing.T) error {
	val, ok := c.env[c.key]
	if !ok {
		panic(fmt.Sprintf("can't increment key %q; not yet read", c.key))
	}
	r := val + 1
	if err := txn.Put(c.getKey(), r); err != nil {
		return err
	}
	c.env[c.key] = r
	c.debug = fmt.Sprintf("[%d]", r)
	return nil
}
开发者ID:mjibson,项目名称:cockroach,代码行数:16,代码来源:txn_correctness_test.go

示例8: readCmd

// readCmd reads a value from the db and stores it in the env.
func readCmd(c *cmd, txn *client.Txn, t *testing.T) error {
	r, err := txn.Get(c.getKey())
	if err != nil {
		return err
	}
	var value int64
	if r.Value != nil {
		value = r.ValueInt()
	}
	c.env[c.key] = value
	c.debug = fmt.Sprintf("[%d]", value)
	return nil
}
开发者ID:mjibson,项目名称:cockroach,代码行数:14,代码来源:txn_correctness_test.go

示例9: writeCmd

// writeCmd sums values from the env (and possibly numeric constants)
// and writes the value to the db. "c.endKey" here needs to be parsed
// in the context of this command, which is a "+"-separated list of
// keys from the env or numeric constants to sum.
func writeCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	sum := int64(0)
	for _, sp := range strings.Split(c.endKey, "+") {
		if constant, err := strconv.Atoi(sp); err != nil {
			sum += c.env[sp]
		} else {
			sum += int64(constant)
		}
	}
	pErr := txn.Put(c.getKey(), sum)
	c.debug = fmt.Sprintf("[%d]", sum)
	return pErr
}
开发者ID:nieyy,项目名称:cockroach,代码行数:17,代码来源:txn_correctness_test.go

示例10: getTableDescFromID

// getTableDescFromID retrieves the table descriptor for the table
// ID passed in using an existing txn. Teturns an error if the
// descriptor doesn't exist or if it exists and is not a table.
func getTableDescFromID(txn *client.Txn, id sqlbase.ID) (*sqlbase.TableDescriptor, error) {
	desc := &sqlbase.Descriptor{}
	descKey := sqlbase.MakeDescMetadataKey(id)

	if err := txn.GetProto(descKey, desc); err != nil {
		return nil, err
	}
	table := desc.GetTable()
	if table == nil {
		return nil, errDescriptorNotFound
	}
	return table, nil
}
开发者ID:JKhawaja,项目名称:cockroach,代码行数:16,代码来源:table.go

示例11: truncateTable

// truncateTable truncates the data of a table.
// It deletes a range of data for the table, which includes the PK and all
// indexes.
func truncateTable(tableDesc *sqlbase.TableDescriptor, txn *client.Txn) error {
	tablePrefix := keys.MakeTablePrefix(uint32(tableDesc.ID))

	// Delete rows and indexes starting with the table's prefix.
	tableStartKey := roachpb.Key(tablePrefix)
	tableEndKey := tableStartKey.PrefixEnd()
	if log.V(2) {
		log.Infof("DelRange %s - %s", tableStartKey, tableEndKey)
	}
	b := client.Batch{}
	b.DelRange(tableStartKey, tableEndKey, false)
	return txn.Run(&b)
}
开发者ID:GitGoldie,项目名称:cockroach,代码行数:16,代码来源:truncate.go

示例12: getTableDescFromID

// get the table descriptor for the ID passed in using the planner's txn.
func getTableDescFromID(txn *client.Txn, id ID) (*TableDescriptor, *roachpb.Error) {
	desc := &Descriptor{}
	descKey := MakeDescMetadataKey(id)

	if pErr := txn.GetProto(descKey, desc); pErr != nil {
		return nil, pErr
	}
	tableDesc := desc.GetTable()
	if tableDesc == nil {
		return nil, roachpb.NewErrorf("ID %d is not a table", id)
	}
	return tableDesc, nil
}
开发者ID:thebrandonstore,项目名称:cockroach,代码行数:14,代码来源:table.go

示例13: resolveName

// resolveName resolves a table name to a descriptor ID by looking in the
// database. If the mapping is not found, errDescriptorNotFound is returned.
func (m *LeaseManager) resolveName(
	txn *client.Txn, dbID sqlbase.ID, tableName string,
) (sqlbase.ID, error) {
	nameKey := tableKey{dbID, tableName}
	key := nameKey.Key()
	gr, err := txn.Get(key)
	if err != nil {
		return 0, err
	}
	if !gr.Exists() {
		return 0, errDescriptorNotFound
	}
	return sqlbase.ID(gr.ValueInt()), nil
}
开发者ID:csdigi,项目名称:cockroach,代码行数:16,代码来源:lease.go

示例14: scanCmd

// scanCmd reads the values from the db from [key, endKey).
func scanCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	rows, pErr := txn.Scan(c.getKey(), c.getEndKey(), 0)
	if pErr != nil {
		return pErr
	}
	var vals []string
	keyPrefix := []byte(fmt.Sprintf("%d.", c.historyIdx))
	for _, kv := range rows {
		key := bytes.TrimPrefix(kv.Key, keyPrefix)
		c.env[string(key)] = kv.ValueInt()
		vals = append(vals, fmt.Sprintf("%d", kv.ValueInt()))
	}
	c.debug = fmt.Sprintf("[%s]", strings.Join(vals, " "))
	return nil
}
开发者ID:billhongs,项目名称:cockroach,代码行数:16,代码来源:txn_correctness_test.go

示例15: commitCmd

// commitCmd commits the transaction.
func commitCmd(c *cmd, txn *client.Txn, t *testing.T) *roachpb.Error {
	return txn.CommitNoCleanup()
}
开发者ID:billhongs,项目名称:cockroach,代码行数:4,代码来源:txn_correctness_test.go


注:本文中的github.com/cockroachdb/cockroach/client.Txn类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。