All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.esql.plan.logical.Rename Maven / Gradle / Ivy

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.analysis.Analyzer.ResolveRefs;
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.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 org.elasticsearch.xpack.esql.expression.function.UnsupportedAttribute;

import java.util.List;
import java.util.Objects;

public class Rename extends UnaryPlan {

    private final List renamings;

    public Rename(Source source, LogicalPlan child, List renamings) {
        super(source, child);
        this.renamings = renamings;
    }

    public List renamings() {
        return renamings;
    }

    @Override
    public List output() {
        // Normally shouldn't reach here, as Rename only exists before resolution.
        List projectionsAfterResolution = ResolveRefs.projectionsForRename(this, this.child().output(), null);

        return Expressions.asAttributes(projectionsAfterResolution);
    }

    @Override
    public boolean expressionsResolved() {
        for (var alias : renamings) {
            // don't call dataType() - it will fail on UnresolvedAttribute
            if (alias.resolved() == false && alias.child() instanceof UnsupportedAttribute == false) {
                return false;
            }
        }
        return true;
    }

    @Override
    public UnaryPlan replaceChild(LogicalPlan newChild) {
        return new Rename(source(), newChild, renamings);
    }

    @Override
    protected NodeInfo info() {
        return NodeInfo.create(this, Rename::new, child(), renamings);
    }

    @Override
    public int hashCode() {
        return Objects.hash(super.hashCode(), renamings);
    }

    @Override
    public boolean equals(Object obj) {
        if (false == super.equals(obj)) {
            return false;
        }
        return Objects.equals(renamings, ((Rename) obj).renamings);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy