(final String table,
final String family)
| 2285 | } |
| 2286 | |
| 2287 | private static void createTable(final String table, |
| 2288 | final String family) throws Exception { |
| 2289 | LOG.info("Creating table " + table + " with family " + family); |
| 2290 | hbaseShell("create '" + table + "'," |
| 2291 | + " {NAME => '" + family + "', VERSIONS => 2}"); |
| 2292 | } |
| 2293 | |
| 2294 | private static void splitTable(final String table, final String key) throws Exception { |
| 2295 | LOG.info("Splitting table " + table + " with key " + key); |
no test coverage detected