Retrieves the foreign key columns for the given table.
(
&mut self,
request: CommandGetImportedKeys,
)
| 330 | |
| 331 | /// Retrieves the foreign key columns for the given table. |
| 332 | pub async fn get_imported_keys( |
| 333 | &mut self, |
| 334 | request: CommandGetImportedKeys, |
| 335 | ) -> Result<FlightInfo> { |
| 336 | self.get_flight_info_for_command(request).await |
| 337 | } |
| 338 | |
| 339 | /// Retrieves a description of the foreign key columns in the given foreign key |
| 340 | /// table that reference the primary key or the columns representing a unique |
nothing calls this directly
no test coverage detected