com.pingcap.tidb.tipb.TableScanOrBuilder Maven / Gradle / Ivy
// 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 extends com.pingcap.tidb.tipb.ColumnInfoOrBuilder>
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 extends com.pingcap.tidb.tipb.KeyRangeOrBuilder>
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