Search in sources :

Example 6 with MockSubScanPOP

use of org.apache.drill.exec.store.mock.MockSubScanPOP in project drill by apache.

the class TestOpSerialization method testSerializedDeserialize.

@Test
public void testSerializedDeserialize() throws Throwable {
    MockSubScanPOP s = new MockSubScanPOP("abc", false, null);
    s.setOperatorId(3);
    Filter f = new Filter(s, new ValueExpressions.BooleanExpression("true", ExpressionPosition.UNKNOWN), 0.1f);
    f.setOperatorId(2);
    UnionExchange e = new UnionExchange(f);
    e.setOperatorId(1);
    Screen screen = new Screen(e, CoordinationProtos.DrillbitEndpoint.getDefaultInstance());
    screen.setOperatorId(0);
    boolean reversed = false;
    while (true) {
        List<PhysicalOperator> pops = Lists.newArrayList();
        pops.add(s);
        pops.add(e);
        pops.add(f);
        pops.add(screen);
        if (reversed) {
            pops = Lists.reverse(pops);
        }
        PhysicalPlan plan1 = new PhysicalPlan(PlanProperties.builder().build(), pops);
        String json = plan1.unparse(writer);
        PhysicalPlan plan2 = reader.readPhysicalPlan(json);
        PhysicalOperator root = plan2.getSortedOperators(false).iterator().next();
        assertEquals(0, root.getOperatorId());
        PhysicalOperator o1 = root.iterator().next();
        assertEquals(1, o1.getOperatorId());
        PhysicalOperator o2 = o1.iterator().next();
        assertEquals(2, o2.getOperatorId());
        if (reversed) {
            break;
        }
        reversed = !reversed;
    }
}
Also used : PhysicalPlan(org.apache.drill.exec.physical.PhysicalPlan) Filter(org.apache.drill.exec.physical.config.Filter) UnionExchange(org.apache.drill.exec.physical.config.UnionExchange) Screen(org.apache.drill.exec.physical.config.Screen) PhysicalOperator(org.apache.drill.exec.physical.base.PhysicalOperator) ValueExpressions(org.apache.drill.common.expression.ValueExpressions) MockSubScanPOP(org.apache.drill.exec.store.mock.MockSubScanPOP) BaseTest(org.apache.drill.test.BaseTest) Test(org.junit.Test)

Aggregations

MockSubScanPOP (org.apache.drill.exec.store.mock.MockSubScanPOP)6 Test (org.junit.Test)4 ValueExpressions (org.apache.drill.common.expression.ValueExpressions)2 PhysicalPlan (org.apache.drill.exec.physical.PhysicalPlan)2 PhysicalOperator (org.apache.drill.exec.physical.base.PhysicalOperator)2 Filter (org.apache.drill.exec.physical.config.Filter)2 Screen (org.apache.drill.exec.physical.config.Screen)2 UnionExchange (org.apache.drill.exec.physical.config.UnionExchange)2 Drillbit (org.apache.drill.exec.server.Drillbit)2 RemoteServiceSet (org.apache.drill.exec.server.RemoteServiceSet)2 MockTableDef (org.apache.drill.exec.store.mock.MockTableDef)2 ValueVector (org.apache.drill.exec.vector.ValueVector)2 BaseTest (org.apache.drill.test.BaseTest)2 ScanBatch (org.apache.drill.exec.physical.impl.ScanBatch)1 CloseableRecordBatch (org.apache.drill.exec.record.CloseableRecordBatch)1