Retrieves a description about the foreign key columns that reference the primary key columns of the given table.
(
&mut self,
request: CommandGetExportedKeys,
)
| 322 | /// Retrieves a description about the foreign key columns that reference the |
| 323 | /// primary key columns of the given table. |
| 324 | pub async fn get_exported_keys( |
| 325 | &mut self, |
| 326 | request: CommandGetExportedKeys, |
| 327 | ) -> Result<FlightInfo> { |
| 328 | self.get_flight_info_for_command(request).await |
| 329 | } |
| 330 | |
| 331 | /// Retrieves the foreign key columns for the given table. |
| 332 | pub async fn get_imported_keys( |
nothing calls this directly
no test coverage detected