(key kv.Key)
| 136 | } |
| 137 | |
| 138 | func hasRecordPrefixSep(key kv.Key) bool { |
| 139 | return key[0] == recordPrefixSep[0] && key[1] == recordPrefixSep[1] |
| 140 | } |
| 141 | |
| 142 | // DecodeRecordKey decodes the key and gets the tableID, handle. |
| 143 | func DecodeRecordKey(key kv.Key) (tableID int64, handle kv.Handle, err error) { |
no outgoing calls
no test coverage detected