Creates the META key to search for in order to locate the given key. @param table The table the row belongs to. @param key The key to search for in META. @return A row key to search for in the META table, that will help us locate the region serving the given (table, key).
(final byte[] table,
final byte[] key)
| 3056 | * locate the region serving the given {@code (table, key)}. |
| 3057 | */ |
| 3058 | static byte[] createRegionSearchKey(final byte[] table, |
| 3059 | final byte[] key) { |
| 3060 | return createRegionSearchKey(table, key, false); |
| 3061 | } |
| 3062 | |
| 3063 | /** |
| 3064 | * Creates the META key to search for in order to locate the given key. |
no outgoing calls