Package com.facebook.presto.raptor

Examples of com.facebook.presto.raptor.RaptorTableHandle


    @Test
    public void testPartitionShardCommit()
            throws Exception
    {
        long tableId = 1;
        ConnectorTableHandle tableHandle = new RaptorTableHandle("test", "demo", "test", tableId, new RaptorColumnHandle("test", "foo", 1, BIGINT), null);
        UUID shardId1 = UUID.randomUUID();
        UUID shardId2 = UUID.randomUUID();

        assertNotEquals(shardId2, shardId1);
View Full Code Here


    @Test
    public void testPartitionShardCommit()
            throws Exception
    {
        long tableId = 1;
        ConnectorTableHandle tableHandle = new RaptorTableHandle("test", "demo", "test", tableId, null);
        UUID shardId1 = UUID.randomUUID();
        UUID shardId2 = UUID.randomUUID();

        assertNotEquals(shardId2, shardId1);
View Full Code Here

TOP

Related Classes of com.facebook.presto.raptor.RaptorTableHandle

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.