@Test
public void testCreateTable() throws Exception {
execute("create table test (col1 integer primary key, col2 string)");
assertThat(response.duration(), greaterThanOrEqualTo(0L));
ensureGreen();
assertTrue(client().admin().indices().exists(new IndicesExistsRequest("test"))
.actionGet().isExists());
String expectedMapping = "{\"default\":{" +
"\"dynamic\":\"true\"," +
"\"_meta\":{\"primary_keys\":[\"col1\"]}," +