Interface ExecuteQueryRequestOrBuilder

  • All Implemented Interfaces:
    com.google.protobuf.MessageLiteOrBuilder , com.google.protobuf.MessageOrBuilder

    
    public interface ExecuteQueryRequestOrBuilder
     implements MessageOrBuilder
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract String getDatabaseName()
      Name of the database to query
      
      string database_name = 1;
      abstract ByteString getDatabaseNameBytes()
      Name of the database to query
      
      string database_name = 1;
      abstract String getRawSql() string raw_sql = 2;
      abstract ByteString getRawSqlBytes() string raw_sql = 2;
      abstract int getCommandTypeValue() .xyz.block.ftl.query.v1.CommandType command_type = 3;
      abstract CommandType getCommandType() .xyz.block.ftl.query.v1.CommandType command_type = 3;
      abstract String getParametersJson()
      JSON array of parameter values in order
      
      string parameters_json = 4;
      abstract ByteString getParametersJsonBytes()
      JSON array of parameter values in order
      
      string parameters_json = 4;
      abstract List<ResultColumn> getResultColumnsList()
      Column names to scan for the result type
      
      repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      abstract ResultColumn getResultColumns(int index)
      Column names to scan for the result type
      
      repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      abstract int getResultColumnsCount()
      Column names to scan for the result type
      
      repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      abstract List<out ResultColumnOrBuilder> getResultColumnsOrBuilderList()
      Column names to scan for the result type
      
      repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      abstract ResultColumnOrBuilder getResultColumnsOrBuilder(int index)
      Column names to scan for the result type
      
      repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      abstract boolean hasTransactionId() optional string transaction_id = 6;
      abstract String getTransactionId() optional string transaction_id = 6;
      abstract ByteString getTransactionIdBytes() optional string transaction_id = 6;
      abstract boolean hasBatchSize()
      Default 100 if not set
      
      optional int32 batch_size = 7;
      abstract int getBatchSize()
      Default 100 if not set
      
      optional int32 batch_size = 7;
      • Methods inherited from class com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
      • Methods inherited from class com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getDatabaseName

         abstract String getDatabaseName()
        Name of the database to query
        
        string database_name = 1;
        Returns:

        The databaseName.

      • getDatabaseNameBytes

         abstract ByteString getDatabaseNameBytes()
        Name of the database to query
        
        string database_name = 1;
        Returns:

        The bytes for databaseName.

      • getRawSql

         abstract String getRawSql()

        string raw_sql = 2;

        Returns:

        The rawSql.

      • getRawSqlBytes

         abstract ByteString getRawSqlBytes()

        string raw_sql = 2;

        Returns:

        The bytes for rawSql.

      • getCommandTypeValue

         abstract int getCommandTypeValue()

        .xyz.block.ftl.query.v1.CommandType command_type = 3;

        Returns:

        The enum numeric value on the wire for commandType.

      • getCommandType

         abstract CommandType getCommandType()

        .xyz.block.ftl.query.v1.CommandType command_type = 3;

        Returns:

        The commandType.

      • getParametersJson

         abstract String getParametersJson()
        JSON array of parameter values in order
        
        string parameters_json = 4;
        Returns:

        The parametersJson.

      • getParametersJsonBytes

         abstract ByteString getParametersJsonBytes()
        JSON array of parameter values in order
        
        string parameters_json = 4;
        Returns:

        The bytes for parametersJson.

      • getResultColumnsList

         abstract List<ResultColumn> getResultColumnsList()
        Column names to scan for the result type
        
        repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      • getResultColumns

         abstract ResultColumn getResultColumns(int index)
        Column names to scan for the result type
        
        repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      • getResultColumnsCount

         abstract int getResultColumnsCount()
        Column names to scan for the result type
        
        repeated .xyz.block.ftl.query.v1.ResultColumn result_columns = 5;
      • hasTransactionId

         abstract boolean hasTransactionId()

        optional string transaction_id = 6;

        Returns:

        Whether the transactionId field is set.

      • getTransactionId

         abstract String getTransactionId()

        optional string transaction_id = 6;

        Returns:

        The transactionId.

      • getTransactionIdBytes

         abstract ByteString getTransactionIdBytes()

        optional string transaction_id = 6;

        Returns:

        The bytes for transactionId.

      • hasBatchSize

         abstract boolean hasBatchSize()
        Default 100 if not set
        
        optional int32 batch_size = 7;
        Returns:

        Whether the batchSize field is set.

      • getBatchSize

         abstract int getBatchSize()
        Default 100 if not set
        
        optional int32 batch_size = 7;
        Returns:

        The batchSize.