private static ColumnFamily<MockCompositeType, String> CF_COMPOSITE_KEY
= ColumnFamily.newColumnFamily("compositekey", M_SERIALIZER, StringSerializer.get());
@Test
public void testCompositeKey() {
MockCompositeType key = new MockCompositeType("A", 1, 2, true, "B");
MutationBatch m = keyspace.prepareMutationBatch();
m.withRow(CF_COMPOSITE_KEY, key).putColumn("Test", "Value", null);
try {
m.execute();
} catch (ConnectionException e) {