(tx *Tx[T], key string)
| 478 | } |
| 479 | |
| 480 | func (this *Table[T]) get(tx *Tx[T], key string) (value T, err error) { |
| 481 | return this.getWithKeyBytes(tx, this.FullKey(key)) |
| 482 | } |
| 483 | |
| 484 | func (this *Table[T]) getWithKeyBytes(tx *Tx[T], keyBytes []byte) (value T, err error) { |
| 485 | valueBytes, closer, err := tx.batch.Get(keyBytes) |
no test coverage detected