com.pingcap.tidb.tipb.ExecutorExecutionSummaryOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: executor.proto
package com.pingcap.tidb.tipb;
public interface ExecutorExecutionSummaryOrBuilder extends
// @@protoc_insertion_point(interface_extends:tipb.ExecutorExecutionSummary)
com.google.protobuf.MessageOrBuilder {
/**
*
* Total time cost in this executor. Includes self time cost and children time cost.
*
*
* optional uint64 time_processed_ns = 1;
*/
boolean hasTimeProcessedNs();
/**
*
* Total time cost in this executor. Includes self time cost and children time cost.
*
*
* optional uint64 time_processed_ns = 1;
*/
long getTimeProcessedNs();
/**
*
* How many rows this executor produced totally.
*
*
* optional uint64 num_produced_rows = 2;
*/
boolean hasNumProducedRows();
/**
*
* How many rows this executor produced totally.
*
*
* optional uint64 num_produced_rows = 2;
*/
long getNumProducedRows();
/**
*
* How many times executor's `next()` is called.
*
*
* optional uint64 num_iterations = 3;
*/
boolean hasNumIterations();
/**
*
* How many times executor's `next()` is called.
*
*
* optional uint64 num_iterations = 3;
*/
long getNumIterations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy