Retrieves a description of the foreign key columns in the given foreign key table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table).
(
&mut self,
request: CommandGetCrossReference,
)
| 340 | /// table that reference the primary key or the columns representing a unique |
| 341 | /// constraint of the parent table (could be the same or a different table). |
| 342 | pub async fn get_cross_reference( |
| 343 | &mut self, |
| 344 | request: CommandGetCrossReference, |
| 345 | ) -> Result<FlightInfo> { |
| 346 | self.get_flight_info_for_command(request).await |
| 347 | } |
| 348 | |
| 349 | /// Request a list of table types. |
| 350 | pub async fn get_table_types(&mut self) -> Result<FlightInfo> { |
nothing calls this directly
no test coverage detected