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

io.substrait.proto.WriteRelOrBuilder 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
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: substrait/algebra.proto

// Protobuf Java Version: 3.25.5
package io.substrait.proto;

public interface WriteRelOrBuilder extends
    // @@protoc_insertion_point(interface_extends:substrait.WriteRel)
    com.google.protobuf.MessageOrBuilder {

  /**
   * .substrait.NamedObjectWrite named_table = 1;
   * @return Whether the namedTable field is set.
   */
  boolean hasNamedTable();
  /**
   * .substrait.NamedObjectWrite named_table = 1;
   * @return The namedTable.
   */
  io.substrait.proto.NamedObjectWrite getNamedTable();
  /**
   * .substrait.NamedObjectWrite named_table = 1;
   */
  io.substrait.proto.NamedObjectWriteOrBuilder getNamedTableOrBuilder();

  /**
   * .substrait.ExtensionObject extension_table = 2;
   * @return Whether the extensionTable field is set.
   */
  boolean hasExtensionTable();
  /**
   * .substrait.ExtensionObject extension_table = 2;
   * @return The extensionTable.
   */
  io.substrait.proto.ExtensionObject getExtensionTable();
  /**
   * .substrait.ExtensionObject extension_table = 2;
   */
  io.substrait.proto.ExtensionObjectOrBuilder getExtensionTableOrBuilder();

  /**
   * 
   * The schema of the table (must align with Rel input (e.g., number of leaf fields must match))
   * 
* * .substrait.NamedStruct table_schema = 3; * @return Whether the tableSchema field is set. */ boolean hasTableSchema(); /** *
   * The schema of the table (must align with Rel input (e.g., number of leaf fields must match))
   * 
* * .substrait.NamedStruct table_schema = 3; * @return The tableSchema. */ io.substrait.proto.NamedStruct getTableSchema(); /** *
   * The schema of the table (must align with Rel input (e.g., number of leaf fields must match))
   * 
* * .substrait.NamedStruct table_schema = 3; */ io.substrait.proto.NamedStructOrBuilder getTableSchemaOrBuilder(); /** *
   * The type of operation to perform
   * 
* * .substrait.WriteRel.WriteOp op = 4; * @return The enum numeric value on the wire for op. */ int getOpValue(); /** *
   * The type of operation to perform
   * 
* * .substrait.WriteRel.WriteOp op = 4; * @return The op. */ io.substrait.proto.WriteRel.WriteOp getOp(); /** *
   * The relation that determines the records to add/remove/modify
   * the schema must match with table_schema. Default values must be explicitly stated
   * in a ProjectRel at the top of the input. The match must also
   * occur in case of DELETE to ensure multi-engine plans are unequivocal.
   * 
* * .substrait.Rel input = 5; * @return Whether the input field is set. */ boolean hasInput(); /** *
   * The relation that determines the records to add/remove/modify
   * the schema must match with table_schema. Default values must be explicitly stated
   * in a ProjectRel at the top of the input. The match must also
   * occur in case of DELETE to ensure multi-engine plans are unequivocal.
   * 
* * .substrait.Rel input = 5; * @return The input. */ io.substrait.proto.Rel getInput(); /** *
   * The relation that determines the records to add/remove/modify
   * the schema must match with table_schema. Default values must be explicitly stated
   * in a ProjectRel at the top of the input. The match must also
   * occur in case of DELETE to ensure multi-engine plans are unequivocal.
   * 
* * .substrait.Rel input = 5; */ io.substrait.proto.RelOrBuilder getInputOrBuilder(); /** *
   * Output mode determines what is the output of executing this rel
   * 
* * .substrait.WriteRel.OutputMode output = 6; * @return The enum numeric value on the wire for output. */ int getOutputValue(); /** *
   * Output mode determines what is the output of executing this rel
   * 
* * .substrait.WriteRel.OutputMode output = 6; * @return The output. */ io.substrait.proto.WriteRel.OutputMode getOutput(); /** * .substrait.RelCommon common = 7; * @return Whether the common field is set. */ boolean hasCommon(); /** * .substrait.RelCommon common = 7; * @return The common. */ io.substrait.proto.RelCommon getCommon(); /** * .substrait.RelCommon common = 7; */ io.substrait.proto.RelCommonOrBuilder getCommonOrBuilder(); io.substrait.proto.WriteRel.WriteTypeCase getWriteTypeCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy