Interface FlightSql.CommandGetPrimaryKeysOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
FlightSql.CommandGetPrimaryKeys, FlightSql.CommandGetPrimaryKeys.Builder
Enclosing class:
FlightSql

public static interface FlightSql.CommandGetPrimaryKeysOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Specifies the catalog to search for the table.
    com.google.protobuf.ByteString
    Specifies the catalog to search for the table.
    Specifies the schema to search for the table.
    com.google.protobuf.ByteString
    Specifies the schema to search for the table.
    Specifies the table to get the primary keys for.
    com.google.protobuf.ByteString
    Specifies the table to get the primary keys for.
    boolean
    Specifies the catalog to search for the table.
    boolean
    Specifies the schema to search for the table.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasCatalog

      boolean hasCatalog()
      
       Specifies the catalog to search for the table.
       An empty string retrieves those without a catalog.
       If omitted the catalog name should not be used to narrow the search.
       
      optional string catalog = 1;
      Returns:
      Whether the catalog field is set.
    • getCatalog

      String getCatalog()
      
       Specifies the catalog to search for the table.
       An empty string retrieves those without a catalog.
       If omitted the catalog name should not be used to narrow the search.
       
      optional string catalog = 1;
      Returns:
      The catalog.
    • getCatalogBytes

      com.google.protobuf.ByteString getCatalogBytes()
      
       Specifies the catalog to search for the table.
       An empty string retrieves those without a catalog.
       If omitted the catalog name should not be used to narrow the search.
       
      optional string catalog = 1;
      Returns:
      The bytes for catalog.
    • hasDbSchema

      boolean hasDbSchema()
      
       Specifies the schema to search for the table.
       An empty string retrieves those without a schema.
       If omitted the schema name should not be used to narrow the search.
       
      optional string db_schema = 2;
      Returns:
      Whether the dbSchema field is set.
    • getDbSchema

      String getDbSchema()
      
       Specifies the schema to search for the table.
       An empty string retrieves those without a schema.
       If omitted the schema name should not be used to narrow the search.
       
      optional string db_schema = 2;
      Returns:
      The dbSchema.
    • getDbSchemaBytes

      com.google.protobuf.ByteString getDbSchemaBytes()
      
       Specifies the schema to search for the table.
       An empty string retrieves those without a schema.
       If omitted the schema name should not be used to narrow the search.
       
      optional string db_schema = 2;
      Returns:
      The bytes for dbSchema.
    • getTable

      String getTable()
       Specifies the table to get the primary keys for.
       
      string table = 3;
      Returns:
      The table.
    • getTableBytes

      com.google.protobuf.ByteString getTableBytes()
       Specifies the table to get the primary keys for.
       
      string table = 3;
      Returns:
      The bytes for table.