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

io.substrait.relation.AbstractReadRel 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 io.substrait.expression.Expression;
import io.substrait.type.NamedStruct;
import io.substrait.type.Type;
import java.util.Optional;

public abstract class AbstractReadRel extends ZeroInputRel implements HasExtension {

  public abstract NamedStruct getInitialSchema();

  public abstract Optional getFilter();

  // TODO:
  // public abstract Optional

  @Override
  protected final Type.Struct deriveRecordType() {
    return getInitialSchema().struct();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy