Package org.apache.arrow.flight.sql.impl
Interface FlightSql.CommandGetImportedKeysOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FlightSql.CommandGetImportedKeys
,FlightSql.CommandGetImportedKeys.Builder
- Enclosing class:
- FlightSql
public static interface FlightSql.CommandGetImportedKeysOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies the catalog to search for the primary key table.com.google.protobuf.ByteString
Specifies the catalog to search for the primary key table.Specifies the schema to search for the primary key table.com.google.protobuf.ByteString
Specifies the schema to search for the primary key table.getTable()
Specifies the primary key table to get the foreign keys for.com.google.protobuf.ByteString
Specifies the primary key table to get the foreign keys for.boolean
Specifies the catalog to search for the primary key table.boolean
Specifies the schema to search for the primary key 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 primary key 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 primary key 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 primary key 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 primary key 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 primary key 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 primary key 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 primary key table to get the foreign keys for.
string table = 3;
- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()Specifies the primary key table to get the foreign keys for.
string table = 3;
- Returns:
- The bytes for table.
-