"where table_name='quotes' and schema_name='doc'" +
"order by partition_ident");
assertThat(response.rowCount(), is(3L));
assertThat((String)response.rows()[0][0], is(new PartitionName("parted", ImmutableList.of(new BytesRef("1395874800000"))).ident()));
assertThat((String)response.rows()[1][0], is(new PartitionName("parted", ImmutableList.of(new BytesRef("1395961200000"))).ident()));
assertThat((String)response.rows()[2][0], is(new PartitionName("parted", ImmutableList.of(new BytesRef("1396303200000"))).ident()));
execute("delete from quotes where quote = 'Don''t panic'");
refresh();
execute("select * from quotes where quote = 'Don''t panic'");