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

io.substrait.plan.Plan 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.plan;

import io.substrait.proto.AdvancedExtension;
import io.substrait.relation.Rel;
import java.util.List;
import java.util.Optional;
import org.immutables.value.Value;

@Value.Immutable
public abstract class Plan {
  static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(Plan.class);

  public abstract List getRoots();

  public abstract List getExpectedTypeUrls();

  public abstract Optional getAdvancedExtension();

  @Value.Immutable
  public abstract static class Root {
    public abstract Rel getInput();

    public abstract List getNames();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy