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

com.clickhouse.client.grpc.impl.ResultOrBuilder Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: clickhouse_grpc.proto

package com.clickhouse.client.grpc.impl;

public interface ResultOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clickhouse.grpc.Result)
    com.google.protobuf.MessageOrBuilder {

  /**
   * string query_id = 9;
   * @return The queryId.
   */
  java.lang.String getQueryId();
  /**
   * string query_id = 9;
   * @return The bytes for queryId.
   */
  com.google.protobuf.ByteString
      getQueryIdBytes();

  /**
   * string time_zone = 10;
   * @return The timeZone.
   */
  java.lang.String getTimeZone();
  /**
   * string time_zone = 10;
   * @return The bytes for timeZone.
   */
  com.google.protobuf.ByteString
      getTimeZoneBytes();

  /**
   * 
   * The format in which `output`, `totals` and `extremes` are written.
   * It's either the same as `output_format` specified in `QueryInfo` or the format specified in the query itself.
   * 
* * string output_format = 11; * @return The outputFormat. */ java.lang.String getOutputFormat(); /** *
   * The format in which `output`, `totals` and `extremes` are written.
   * It's either the same as `output_format` specified in `QueryInfo` or the format specified in the query itself.
   * 
* * string output_format = 11; * @return The bytes for outputFormat. */ com.google.protobuf.ByteString getOutputFormatBytes(); /** *
   * The names and types of columns of the result written in `output`.
   * 
* * repeated .clickhouse.grpc.NameAndType output_columns = 12; */ java.util.List getOutputColumnsList(); /** *
   * The names and types of columns of the result written in `output`.
   * 
* * repeated .clickhouse.grpc.NameAndType output_columns = 12; */ com.clickhouse.client.grpc.impl.NameAndType getOutputColumns(int index); /** *
   * The names and types of columns of the result written in `output`.
   * 
* * repeated .clickhouse.grpc.NameAndType output_columns = 12; */ int getOutputColumnsCount(); /** *
   * The names and types of columns of the result written in `output`.
   * 
* * repeated .clickhouse.grpc.NameAndType output_columns = 12; */ java.util.List getOutputColumnsOrBuilderList(); /** *
   * The names and types of columns of the result written in `output`.
   * 
* * repeated .clickhouse.grpc.NameAndType output_columns = 12; */ com.clickhouse.client.grpc.impl.NameAndTypeOrBuilder getOutputColumnsOrBuilder( int index); /** *
   * Output of the query, represented in the `output_format`.
   * 
* * bytes output = 1; * @return The output. */ com.google.protobuf.ByteString getOutput(); /** * bytes totals = 2; * @return The totals. */ com.google.protobuf.ByteString getTotals(); /** * bytes extremes = 3; * @return The extremes. */ com.google.protobuf.ByteString getExtremes(); /** * repeated .clickhouse.grpc.LogEntry logs = 4; */ java.util.List getLogsList(); /** * repeated .clickhouse.grpc.LogEntry logs = 4; */ com.clickhouse.client.grpc.impl.LogEntry getLogs(int index); /** * repeated .clickhouse.grpc.LogEntry logs = 4; */ int getLogsCount(); /** * repeated .clickhouse.grpc.LogEntry logs = 4; */ java.util.List getLogsOrBuilderList(); /** * repeated .clickhouse.grpc.LogEntry logs = 4; */ com.clickhouse.client.grpc.impl.LogEntryOrBuilder getLogsOrBuilder( int index); /** * .clickhouse.grpc.Progress progress = 5; * @return Whether the progress field is set. */ boolean hasProgress(); /** * .clickhouse.grpc.Progress progress = 5; * @return The progress. */ com.clickhouse.client.grpc.impl.Progress getProgress(); /** * .clickhouse.grpc.Progress progress = 5; */ com.clickhouse.client.grpc.impl.ProgressOrBuilder getProgressOrBuilder(); /** * .clickhouse.grpc.Stats stats = 6; * @return Whether the stats field is set. */ boolean hasStats(); /** * .clickhouse.grpc.Stats stats = 6; * @return The stats. */ com.clickhouse.client.grpc.impl.Stats getStats(); /** * .clickhouse.grpc.Stats stats = 6; */ com.clickhouse.client.grpc.impl.StatsOrBuilder getStatsOrBuilder(); /** *
   * Set by the ClickHouse server if there was an exception thrown while executing.
   * 
* * .clickhouse.grpc.Exception exception = 7; * @return Whether the exception field is set. */ boolean hasException(); /** *
   * Set by the ClickHouse server if there was an exception thrown while executing.
   * 
* * .clickhouse.grpc.Exception exception = 7; * @return The exception. */ com.clickhouse.client.grpc.impl.Exception getException(); /** *
   * Set by the ClickHouse server if there was an exception thrown while executing.
   * 
* * .clickhouse.grpc.Exception exception = 7; */ com.clickhouse.client.grpc.impl.ExceptionOrBuilder getExceptionOrBuilder(); /** *
   * Set by the ClickHouse server if executing was cancelled by the `cancel` field in QueryInfo.
   * 
* * bool cancelled = 8; * @return The cancelled. */ boolean getCancelled(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy