pub async fn load_table_with_timeout(
catalog: &dyn Catalog,
namespace: &str,
table_name: &str,
timeout: Duration,
) -> Result<Table, ConnectorError>Expand description
Loads an Iceberg table within a bounded catalog operation.
ยงErrors
Returns ConnectorError::ReadError if the table cannot be loaded before the deadline, or
ConnectorError::FeatureUnsupported when loading requires an unavailable capability.