io.substrait.expression.AbstractFunctionInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Create a well-defined, cross-language specification for data compute operations
package io.substrait.expression;
import io.substrait.extension.SimpleExtension;
import io.substrait.type.Type;
import java.util.List;
public abstract class AbstractFunctionInvocation {
public abstract T declaration();
public abstract List arguments();
public abstract Expression.AggregationPhase aggregationPhase();
public abstract List sort();
public abstract Type outputType();
public Type getType() {
return outputType();
}
public abstract I invocation();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy