java.lang.Object
org.apache.arrow.flight.sql.util.TableRef
A helper class to reference a table to be passed to the flight sql client.
- 
Constructor Details- 
TableRefThe complete constructor for the TableRef class.- Parameters:
- catalog- the catalog from a table.
- dbSchema- the database schema from a table.
- table- the table name from a table.
 
 
- 
- 
Method Details- 
ofA static initializer of the TableRef with all the arguments.- Parameters:
- catalog- the catalog from a table.
- dbSchema- the database schema from a table.
- table- the table name from a table.
- Returns:
- A TableRef object.
 
- 
getCatalogRetrieve the catalog from the object.- Returns:
- the catalog.
 
- 
getDbSchemaRetrieves the db schema from the object.- Returns:
- the dbSchema
 
- 
getTableRetrieves the table from the object.- Returns:
- the table.
 
 
-