Package io.crate.operation.collect

Examples of io.crate.operation.collect.CollectOperation


        collectNode.maxRowGranularity(RowGranularity.CLUSTER);
        collectNode.jobId(testJobId);
        collectNode.toCollect(ImmutableList.<Symbol>of(Literal.newLiteral(4)));


        CollectOperation collectOperation = new CollectOperation() {
            @Override
            public ListenableFuture collect(CollectNode cn) {
                assertEquals(cn, collectNode);
                SettableFuture<Object[][]> result = SettableFuture.create();
                result.set(new Object[][]{{1}});
View Full Code Here

TOP

Related Classes of io.crate.operation.collect.CollectOperation

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.