TableOperations tops = conn.tableOperations();
if (tops.exists(TABLE_NAME)) {
tops.delete(TABLE_NAME);
}
tops.create(TABLE_NAME);
boolean[] booleans = new boolean[] {true, false, true};
byte [] bytes = new byte [] { Byte.MIN_VALUE, -1, Byte.MAX_VALUE };
short [] shorts = new short [] { Short.MIN_VALUE, -1, Short.MAX_VALUE };
int [] ints = new int [] { Integer.MIN_VALUE, -1, Integer.MAX_VALUE };