(bucket string)
| 135 | } |
| 136 | |
| 137 | func (tx *Tx) GetMinKey(bucket string) ([]byte, error) { |
| 138 | return tx.getMaxOrMinKey(bucket, false) |
| 139 | } |
| 140 | |
| 141 | func (tx *Tx) getMaxOrMinKey(bucket string, isMax bool) ([]byte, error) { |
| 142 | if err := tx.checkTxIsClosed(); err != nil { |