io.substrait.relation.ExtensionLeaf 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.relation;
import org.immutables.value.Value;
@Value.Immutable
public abstract class ExtensionLeaf extends ZeroInputRel {
public abstract Extension.LeafRelDetail getDetail();
@Override
public O accept(RelVisitor visitor) throws E {
return visitor.visit(this);
}
public static ImmutableExtensionLeaf.Builder from(Extension.LeafRelDetail detail) {
return ImmutableExtensionLeaf.builder()
.detail(detail)
.deriveRecordType(detail.deriveRecordType());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy