Package | Description |
---|---|
org.apache.arrow.flight | |
org.apache.arrow.flight.integration.tests | |
org.apache.arrow.flight.sql |
Modifier and Type | Method and Description |
---|---|
default Runnable |
FlightSqlProducer.acceptPut(FlightProducer.CallContext context,
FlightStream flightStream,
FlightProducer.StreamListener<PutResult> ackStream)
Depending on the provided command, method either:
1.
|
Runnable |
FlightSqlProducer.acceptPutPreparedStatementQuery(FlightSql.CommandPreparedStatementQuery command,
FlightProducer.CallContext context,
FlightStream flightStream,
FlightProducer.StreamListener<PutResult> ackStream)
Accepts uploaded parameter values for a particular prepared statement query.
|
Runnable |
FlightSqlProducer.acceptPutPreparedStatementUpdate(FlightSql.CommandPreparedStatementUpdate command,
FlightProducer.CallContext context,
FlightStream flightStream,
FlightProducer.StreamListener<PutResult> ackStream)
Accepts uploaded data for a particular prepared statement data stream.
|
Runnable |
FlightSqlProducer.acceptPutStatement(FlightSql.CommandStatementUpdate command,
FlightProducer.CallContext context,
FlightStream flightStream,
FlightProducer.StreamListener<PutResult> ackStream)
Accepts uploaded data for a particular SQL query based data stream.
|
void |
FlightSqlProducer.closePreparedStatement(FlightSql.ActionClosePreparedStatementRequest request,
FlightProducer.CallContext context,
FlightProducer.StreamListener<Result> listener)
Closes a prepared statement on the server.
|
void |
FlightSqlProducer.createPreparedStatement(FlightSql.ActionCreatePreparedStatementRequest request,
FlightProducer.CallContext context,
FlightProducer.StreamListener<Result> listener)
Creates a prepared statement on the server and returns a handle and metadata for in a
FlightSql.ActionCreatePreparedStatementResult object in a Result
object. |
default void |
FlightSqlProducer.doAction(FlightProducer.CallContext context,
Action action,
FlightProducer.StreamListener<Result> listener)
Performs the requested Flight SQL action.
|
default FlightInfo |
FlightSqlProducer.getFlightInfo(FlightProducer.CallContext context,
FlightDescriptor descriptor)
Depending on the provided command, method either:
1.
|
FlightInfo |
FlightSqlProducer.getFlightInfoCatalogs(FlightSql.CommandGetCatalogs request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the available catalogs by returning a stream of
FlightSql.CommandGetCatalogs objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoCrossReference(FlightSql.CommandGetCrossReference request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Retrieve a description of the foreign key columns that reference the given table's primary key columns
FlightSql.CommandGetCrossReference objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoExportedKeys(FlightSql.CommandGetExportedKeys request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Retrieves a description of the foreign key columns that reference the given table's primary key columns
FlightSql.CommandGetExportedKeys objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoImportedKeys(FlightSql.CommandGetImportedKeys request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Retrieves a description of the primary key columns that are referenced by given table's foreign key columns
FlightSql.CommandGetImportedKeys objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoPreparedStatement(FlightSql.CommandPreparedStatementQuery command,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Gets information about a particular prepared statement data stream.
|
FlightInfo |
FlightSqlProducer.getFlightInfoPrimaryKeys(FlightSql.CommandGetPrimaryKeys request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the available primary keys by returning a stream of
FlightSql.CommandGetPrimaryKeys objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoSchemas(FlightSql.CommandGetDbSchemas request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the available schemas by returning a stream of
FlightSql.CommandGetDbSchemas objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoSqlInfo(FlightSql.CommandGetSqlInfo request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the SQL Info of the server by returning a
FlightSql.CommandGetSqlInfo in a Result . |
FlightInfo |
FlightSqlProducer.getFlightInfoStatement(FlightSql.CommandStatementQuery command,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Gets information about a particular SQL query based data stream.
|
FlightInfo |
FlightSqlProducer.getFlightInfoTables(FlightSql.CommandGetTables request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the available tables by returning a stream of
FlightSql.CommandGetTables objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoTableTypes(FlightSql.CommandGetTableTypes request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the available table types by returning a stream of
FlightSql.CommandGetTableTypes objects in Result objects. |
FlightInfo |
FlightSqlProducer.getFlightInfoTypeInfo(FlightSql.CommandGetXdbcTypeInfo request,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns a description of all the data types supported by source.
|
default SchemaResult |
FlightSqlProducer.getSchema(FlightProducer.CallContext context,
FlightDescriptor descriptor)
Returns the schema of the result produced by the SQL query.
|
SchemaResult |
FlightSqlProducer.getSchemaStatement(FlightSql.CommandStatementQuery command,
FlightProducer.CallContext context,
FlightDescriptor descriptor)
Gets schema about a particular SQL query based data stream.
|
default void |
FlightSqlProducer.getStream(FlightProducer.CallContext context,
Ticket ticket,
FlightProducer.ServerStreamListener listener)
Depending on the provided command, method either:
1.
|
void |
FlightSqlProducer.getStreamCatalogs(FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for catalogs based data stream.
|
void |
FlightSqlProducer.getStreamCrossReference(FlightSql.CommandGetCrossReference command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for cross reference based data stream.
|
void |
FlightSqlProducer.getStreamExportedKeys(FlightSql.CommandGetExportedKeys command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for foreign keys based data stream.
|
void |
FlightSqlProducer.getStreamImportedKeys(FlightSql.CommandGetImportedKeys command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for foreign keys based data stream.
|
void |
FlightSqlProducer.getStreamPreparedStatement(FlightSql.CommandPreparedStatementQuery command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for a particular prepared statement query instance.
|
void |
FlightSqlProducer.getStreamPrimaryKeys(FlightSql.CommandGetPrimaryKeys command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for primary keys based data stream.
|
void |
FlightSqlProducer.getStreamSchemas(FlightSql.CommandGetDbSchemas command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for schemas based data stream.
|
void |
FlightSqlProducer.getStreamSqlInfo(FlightSql.CommandGetSqlInfo command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for SQL info based data stream.
|
void |
FlightSqlProducer.getStreamStatement(FlightSql.TicketStatementQuery ticket,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for a SQL query based data stream.
|
void |
FlightSqlProducer.getStreamTables(FlightSql.CommandGetTables command,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for tables based data stream.
|
void |
FlightSqlProducer.getStreamTableTypes(FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for table types based data stream.
|
void |
FlightSqlProducer.getStreamTypeInfo(FlightSql.CommandGetXdbcTypeInfo request,
FlightProducer.CallContext context,
FlightProducer.ServerStreamListener listener)
Returns data for type info based data stream.
|
default void |
FlightSqlProducer.listActions(FlightProducer.CallContext context,
FlightProducer.StreamListener<ActionType> listener)
Lists all available Flight SQL actions.
|
Copyright © 2022 The Apache Software Foundation. All rights reserved.