org.elasticsearch.xpack.esql.plan.logical.InlineStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x-pack-esql Show documentation
Show all versions of x-pack-esql Show documentation
The plugin that powers ESQL for Elasticsearch
The newest version!
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
package org.elasticsearch.xpack.esql.plan.logical;
import org.elasticsearch.xpack.esql.core.capabilities.Resolvables;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.Expression;
import org.elasticsearch.xpack.esql.core.expression.Expressions;
import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
import org.elasticsearch.xpack.esql.core.plan.logical.LogicalPlan;
import org.elasticsearch.xpack.esql.core.plan.logical.UnaryPlan;
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
import org.elasticsearch.xpack.esql.core.tree.Source;
import java.util.List;
import java.util.Objects;
public class InlineStats extends UnaryPlan {
private final List groupings;
private final List extends NamedExpression> aggregates;
public InlineStats(Source source, LogicalPlan child, List groupings, List extends NamedExpression> aggregates) {
super(source, child);
this.groupings = groupings;
this.aggregates = aggregates;
}
@Override
protected NodeInfo info() {
return NodeInfo.create(this, InlineStats::new, child(), groupings, aggregates);
}
@Override
public InlineStats replaceChild(LogicalPlan newChild) {
return new InlineStats(source(), newChild, groupings, aggregates);
}
public List groupings() {
return groupings;
}
public List extends NamedExpression> aggregates() {
return aggregates;
}
@Override
public boolean expressionsResolved() {
return Resolvables.resolved(groupings) && Resolvables.resolved(aggregates);
}
@Override
public List output() {
return Expressions.asAttributes(aggregates);
}
@Override
public int hashCode() {
return Objects.hash(groupings, aggregates, child());
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
InlineStats other = (InlineStats) obj;
return Objects.equals(groupings, other.groupings)
&& Objects.equals(aggregates, other.aggregates)
&& Objects.equals(child(), other.child());
}
}