org.elasticsearch.xpack.esql.plan.logical.Row 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
/*
* 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.Alias;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.Expressions;
import org.elasticsearch.xpack.esql.core.plan.logical.LeafPlan;
import org.elasticsearch.xpack.esql.core.plan.logical.LogicalPlan;
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 Row extends LeafPlan {
private final List fields;
public Row(Source source, List fields) {
super(source);
this.fields = fields;
}
public List fields() {
return fields;
}
@Override
public List output() {
return Expressions.asAttributes(fields);
}
@Override
public boolean expressionsResolved() {
return Resolvables.resolved(fields);
}
@Override
protected NodeInfo extends LogicalPlan> info() {
return NodeInfo.create(this, Row::new, fields);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Row constant = (Row) o;
return Objects.equals(fields, constant.fields);
}
@Override
public int hashCode() {
return Objects.hash(fields);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy