io.substrait.isthmus.CallConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isthmus Show documentation
Show all versions of isthmus Show documentation
Create a well-defined, cross-language specification for data compute operations
package io.substrait.isthmus;
import io.substrait.expression.Expression;
import java.util.Optional;
import java.util.function.Function;
import org.apache.calcite.rex.RexCall;
import org.apache.calcite.rex.RexNode;
@FunctionalInterface
public interface CallConverter {
Optional convert(RexCall call, Function topLevelConverter);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy