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

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

  /**
   * optional uint64 connID = 1 [(.gogoproto.nullable) = false];
   */
  boolean hasConnID();
  /**
   * optional uint64 connID = 1 [(.gogoproto.nullable) = false];
   */
  long getConnID();

  /**
   * 
   * Query indicates whether terminate a single query on this connection or the whole connection.
   *   If Query is true, terminates the statement the connection is currently executing, but leaves the connection itself intact.
   *   If Query is false, terminates the connection associated with the given ConnectionID, after terminating any statement the connection is executing.
   *   See https://dev.mysql.com/doc/refman/8.0/en/kill.html.
   * 
* * optional bool query = 2 [(.gogoproto.nullable) = false]; */ boolean hasQuery(); /** *
   * Query indicates whether terminate a single query on this connection or the whole connection.
   *   If Query is true, terminates the statement the connection is currently executing, but leaves the connection itself intact.
   *   If Query is false, terminates the connection associated with the given ConnectionID, after terminating any statement the connection is executing.
   *   See https://dev.mysql.com/doc/refman/8.0/en/kill.html.
   * 
* * optional bool query = 2 [(.gogoproto.nullable) = false]; */ boolean getQuery(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy