public void testCreateTableWithCompositeIndex() throws Exception {
execute("create table novels (title string, description string, " +
"index title_desc_fulltext using fulltext(title, description) " +
"with(analyzer='english')) with (number_of_replicas = 0)");
ensureGreen();
assertTrue(client().admin().indices().exists(new IndicesExistsRequest("novels"))
.actionGet().isExists());
String title = "So Long, and Thanks for All the Fish";
String description = "Many were increasingly of the opinion that they'd all made a big " +
"mistake in coming down from the trees in the first place. And some said that " +