blob: d9821791798c5e8c39342dfc3b1b23b23b2ca8fc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.exec.physical.impl.metadata;
import org.apache.drill.common.logical.data.NamedExpression;
import org.apache.drill.exec.exception.ClassTransformationException;
import org.apache.drill.exec.exception.OutOfMemoryException;
import org.apache.drill.exec.exception.SchemaChangeException;
import org.apache.drill.exec.metastore.ColumnNamesOptions;
import org.apache.drill.exec.ops.FragmentContext;
import org.apache.drill.exec.physical.config.MetadataStreamAggPOP;
import org.apache.drill.exec.physical.impl.aggregate.StreamingAggBatch;
import org.apache.drill.exec.physical.impl.aggregate.StreamingAggregator;
import org.apache.drill.exec.record.RecordBatch;
import java.io.IOException;
import java.util.List;
/**
* Operator which adds aggregate calls for all incoming columns to calculate required metadata and produces aggregations.
* If aggregation is performed on top of another aggregation, required aggregate calls for merging metadata will be added.
*/
public class MetadataStreamAggBatch extends StreamingAggBatch {
private List<NamedExpression> valueExpressions;
public MetadataStreamAggBatch(MetadataStreamAggPOP popConfig, RecordBatch incoming, FragmentContext context) throws OutOfMemoryException {
super(popConfig, incoming, context);
}
@Override
protected StreamingAggregator createAggregatorInternal()
throws SchemaChangeException, ClassTransformationException, IOException {
MetadataStreamAggPOP popConfig = (MetadataStreamAggPOP) this.popConfig;
valueExpressions = new MetadataAggregateHelper(popConfig.getContext(),
new ColumnNamesOptions(context.getOptions()), incoming.getSchema(), popConfig.getPhase())
.getValueExpressions();
return super.createAggregatorInternal();
}
@Override
protected List<NamedExpression> getValueExpressions() {
return valueExpressions;
}
}