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

io.substrait.relation.BiRel Maven / Gradle / Ivy

Go to download

Create a well-defined, cross-language specification for data compute operations

There is a newer version: 0.46.1
Show newest version
package io.substrait.relation;

import java.util.Arrays;
import java.util.List;

public abstract class BiRel extends AbstractRel {
  static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(BiRel.class);

  public abstract Rel getLeft();

  public abstract Rel getRight();

  @Override
  public final List getInputs() {
    return Arrays.asList(getLeft(), getRight());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy