@Test
public void testInsertAtNodeWithoutShard() throws Exception {
setUpSimple(1);
Iterator<Client> iterator = clients().iterator();
Client client1 = iterator.next();
Client client2 = iterator.next();
client1.execute(SQLAction.INSTANCE, new SQLRequest(
"insert into t1 (id, string_field, " +
"timestamp_field, byte_field) values (?, ?, ?, ?)", new Object[]{1, "With",
"1970-01-01T00:00:00", 127})).actionGet();
client2.execute(SQLAction.INSTANCE, new SQLRequest(
"insert into t1 (id, string_field, timestamp_field, byte_field) values (?, ?, ?, ?)",
new Object[]{2, "Without", "1970-01-01T01:00:00", Byte.MIN_VALUE})).actionGet();
refresh();
SQLResponse response = execute("select id, string_field, timestamp_field, byte_field from t1 order by id");