com.pingcap.tidb.tipb.IndexInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: schema.proto
package com.pingcap.tidb.tipb;
public interface IndexInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tipb.IndexInfo)
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 extends com.pingcap.tidb.tipb.ColumnInfoOrBuilder>
getColumnsOrBuilderList();
/**
* repeated .tipb.ColumnInfo columns = 3;
*/
com.pingcap.tidb.tipb.ColumnInfoOrBuilder getColumnsOrBuilder(
int index);
/**
* optional bool unique = 4 [(.gogoproto.nullable) = false];
*/
boolean hasUnique();
/**
* optional bool unique = 4 [(.gogoproto.nullable) = false];
*/
boolean getUnique();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy