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

com.pingcap.tidb.tipb.ExecutorExecutionSummaryOrBuilder 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 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(); /** *
   * Coresponding executor id
   * 
* * optional string executor_id = 4; */ boolean hasExecutorId(); /** *
   * Coresponding executor id
   * 
* * optional string executor_id = 4; */ java.lang.String getExecutorId(); /** *
   * Coresponding executor id
   * 
* * optional string executor_id = 4; */ com.google.protobuf.ByteString getExecutorIdBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy