
it.unibz.inf.ontop.iq.node.AggregationNode Maven / Gradle / Ivy
package it.unibz.inf.ontop.iq.node;
import com.google.common.collect.ImmutableSet;
import it.unibz.inf.ontop.iq.exception.QueryNodeTransformationException;
import it.unibz.inf.ontop.iq.transform.node.HomogeneousQueryNodeTransformer;
import it.unibz.inf.ontop.model.term.ImmutableFunctionalTerm;
import it.unibz.inf.ontop.model.term.Variable;
import it.unibz.inf.ontop.substitution.Substitution;
/**
* Combines GROUP BY and a projection
*
* See IntermediateQueryFactory for creating a new instance.
*
*/
public interface AggregationNode extends ExtendedProjectionNode {
@Override
Substitution getSubstitution();
ImmutableSet getGroupingVariables();
@Override
AggregationNode acceptNodeTransformer(HomogeneousQueryNodeTransformer transformer)
throws QueryNodeTransformationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy