Package com.netflix.astyanax.cql.test.MockCompositeTypeTests

Examples of com.netflix.astyanax.cql.test.MockCompositeTypeTests.MockCompositeType


    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) {
View Full Code Here

TOP

Related Classes of com.netflix.astyanax.cql.test.MockCompositeTypeTests.MockCompositeType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.