m.putDelete(new Text(cf), new Text(cq), le);
}
private void insertData() throws Exception {
BatchWriter bw = getConnector().createBatchWriter("vt", new BatchWriterConfig());
Mutation m1 = new Mutation(new Text("row1"));
mput(m1, "cf1", "cq1", "", "v1");
mput(m1, "cf1", "cq1", "A", "v2");
mput(m1, "cf1", "cq1", "B", "v3");
mput(m1, "cf1", "cq1", "A&B", "v4");
mput(m1, "cf1", "cq1", "A&(L|M)", "v5");
mput(m1, "cf1", "cq1", "B&(L|M)", "v6");
mput(m1, "cf1", "cq1", "A&B&(L|M)", "v7");
mput(m1, "cf1", "cq1", "A&B&(L)", "v8");
mput(m1, "cf1", "cq1", "A&FOO", "v9");
mput(m1, "cf1", "cq1", "A&FOO&(L|M)", "v10");
mput(m1, "cf1", "cq1", "FOO", "v11");
mput(m1, "cf1", "cq1", "(A|B)&FOO&(L|M)", "v12");
mput(m1, "cf1", "cq1", "A&B&(L|M|FOO)", "v13");
bw.addMutation(m1);
bw.close();
}