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

com.pingcap.tidb.tipb.TableScanOrBuilder Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: executor.proto

package com.pingcap.tidb.tipb;

public interface TableScanOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tipb.TableScan)
    com.google.protobuf.MessageOrBuilder {

  /**
   * optional int64 table_id = 1 [(.gogoproto.nullable) = false];
   */
  boolean hasTableId();
  /**
   * optional int64 table_id = 1 [(.gogoproto.nullable) = false];
   */
  long getTableId();

  /**
   * repeated .tipb.ColumnInfo columns = 2;
   */
  java.util.List 
      getColumnsList();
  /**
   * repeated .tipb.ColumnInfo columns = 2;
   */
  com.pingcap.tidb.tipb.ColumnInfo getColumns(int index);
  /**
   * repeated .tipb.ColumnInfo columns = 2;
   */
  int getColumnsCount();
  /**
   * repeated .tipb.ColumnInfo columns = 2;
   */
  java.util.List 
      getColumnsOrBuilderList();
  /**
   * repeated .tipb.ColumnInfo columns = 2;
   */
  com.pingcap.tidb.tipb.ColumnInfoOrBuilder getColumnsOrBuilder(
      int index);

  /**
   * optional bool desc = 3 [(.gogoproto.nullable) = false];
   */
  boolean hasDesc();
  /**
   * optional bool desc = 3 [(.gogoproto.nullable) = false];
   */
  boolean getDesc();

  /**
   * repeated int64 primary_column_ids = 4;
   */
  java.util.List getPrimaryColumnIdsList();
  /**
   * repeated int64 primary_column_ids = 4;
   */
  int getPrimaryColumnIdsCount();
  /**
   * repeated int64 primary_column_ids = 4;
   */
  long getPrimaryColumnIds(int index);

  /**
   * 
   * which engine we should in next step, only used by tiflash
   * 
* * optional .tipb.EngineType next_read_engine = 5 [(.gogoproto.nullable) = false]; */ boolean hasNextReadEngine(); /** *
   * which engine we should in next step, only used by tiflash
   * 
* * optional .tipb.EngineType next_read_engine = 5 [(.gogoproto.nullable) = false]; */ com.pingcap.tidb.tipb.EngineType getNextReadEngine(); /** *
   * For global read in join, we must point out the key ranges when we don't have the region info.
   * 
* * repeated .tipb.KeyRange ranges = 6 [(.gogoproto.nullable) = false]; */ java.util.List getRangesList(); /** *
   * For global read in join, we must point out the key ranges when we don't have the region info.
   * 
* * repeated .tipb.KeyRange ranges = 6 [(.gogoproto.nullable) = false]; */ com.pingcap.tidb.tipb.KeyRange getRanges(int index); /** *
   * For global read in join, we must point out the key ranges when we don't have the region info.
   * 
* * repeated .tipb.KeyRange ranges = 6 [(.gogoproto.nullable) = false]; */ int getRangesCount(); /** *
   * For global read in join, we must point out the key ranges when we don't have the region info.
   * 
* * repeated .tipb.KeyRange ranges = 6 [(.gogoproto.nullable) = false]; */ java.util.List getRangesOrBuilderList(); /** *
   * For global read in join, we must point out the key ranges when we don't have the region info.
   * 
* * repeated .tipb.KeyRange ranges = 6 [(.gogoproto.nullable) = false]; */ com.pingcap.tidb.tipb.KeyRangeOrBuilder getRangesOrBuilder( int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy