EncodeRowKeyWithHandle encodes the table id, row handle into a kv.Key
(tableID int64, handle kv.Handle)
| 112 | |
| 113 | // EncodeRowKeyWithHandle encodes the table id, row handle into a kv.Key |
| 114 | func EncodeRowKeyWithHandle(tableID int64, handle kv.Handle) kv.Key { |
| 115 | return EncodeRowKey(tableID, handle.Encoded()) |
| 116 | } |
| 117 | |
| 118 | // CutRowKeyPrefix cuts the row key prefix. |
| 119 | func CutRowKeyPrefix(key kv.Key) []byte { |