Github user zuyu commented on a diff in the pull request: https://github.com/apache/incubator-quickstep/pull/185#discussion_r100369933 --- Diff: relational_operators/WorkOrderFactory.cpp --- @@ -91,6 +92,19 @@ WorkOrder* WorkOrderFactory::ReconstructFromProto(const serialization::WorkOrder CreateLIPFilterAdaptiveProberHelper( proto.GetExtension(serialization::AggregationWorkOrder::lip_deployment_index), query_context)); } + case serialization::BUILD_AGGREGATION_EXISTENCE_MAP: { + LOG(INFO) << "Creating BuildAggregationExistenceMapWorkOrder in Shiftboss " << shiftboss_index; + + return new BuildAggregationExistenceMapWorkOrder( + proto.query_id(), + catalog_database->getRelationSchemaById( + proto.GetExtension(serialization::BuildAggregationExistenceMapWorkOrder::relation_id)), + proto.GetExtension(serialization::BuildAggregationExistenceMapWorkOrder::build_block_id), + proto.GetExtension(serialization::BuildAggregationExistenceMapWorkOrder::build_attribute), + query_context->getAggregationState( + proto.GetExtension(serialization::AggregationWorkOrder::aggr_state_index)), --- End diff -- This is a bug: replace `AggregationWorkOrder` with `BuildAggregationExistenceMapWorkOrder`.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---