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

com.pingcap.tidb.tipb.IndexScanOrBuilder 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 IndexScanOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tipb.IndexScan)
    com.google.protobuf.MessageOrBuilder {

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

  /**
   * optional int64 index_id = 2 [(.gogoproto.nullable) = false];
   */
  boolean hasIndexId();
  /**
   * optional int64 index_id = 2 [(.gogoproto.nullable) = false];
   */
  long getIndexId();

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

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

  /**
   * 
   * check whether it is a unique index.
   * 
* * optional bool unique = 5; */ boolean hasUnique(); /** *
   * check whether it is a unique index.
   * 
* * optional bool unique = 5; */ boolean getUnique(); /** * repeated int64 primary_column_ids = 6; */ java.util.List getPrimaryColumnIdsList(); /** * repeated int64 primary_column_ids = 6; */ int getPrimaryColumnIdsCount(); /** * repeated int64 primary_column_ids = 6; */ long getPrimaryColumnIds(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy