in src/catalog.rs [99:107]
fn table(&self, name: &str, py: Python) -> PyDataFusionResult<PyTable> {
if let Some(table) = wait_for_future(py, self.database.table(name))? {
Ok(PyTable::new(table))
} else {
Err(PyDataFusionError::Common(format!(
"Table not found: {name}"
)))
}
}