io.substrait.relation.ZeroInputRel 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 java.util.Collections;
import java.util.List;
public abstract class ZeroInputRel extends AbstractRel {
static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(ZeroInputRel.class);
@Override
public final List getInputs() {
return Collections.emptyList();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy