org.elasticsearch.xpack.esql.plan.physical.RowExec 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.physical;
import org.elasticsearch.xpack.esql.core.expression.Alias;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.Expressions;
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 RowExec extends LeafExec {
private final List fields;
public RowExec(Source source, List fields) {
super(source);
this.fields = fields;
}
public List fields() {
return fields;
}
@Override
public List output() {
return Expressions.asAttributes(fields);
}
@Override
protected NodeInfo extends PhysicalPlan> info() {
return NodeInfo.create(this, RowExec::new, fields);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RowExec constant = (RowExec) o;
return Objects.equals(fields, constant.fields);
}
@Override
public int hashCode() {
return Objects.hash(fields);
}
}