(final String table, final String key)
| 2292 | } |
| 2293 | |
| 2294 | private static void splitTable(final String table, final String key) throws Exception { |
| 2295 | LOG.info("Splitting table " + table + " with key " + key); |
| 2296 | hbaseShell("split '" + table +"', " + "'" + key + "'"); |
| 2297 | } |
| 2298 | |
| 2299 | private static void alterTableStatus(final String table) throws Exception { |
| 2300 | LOG.info("Altering table status " + table); |
no test coverage detected