feat(python): expose remote function refresh jobs

This commit is contained in:
Xuanwo
2026-08-21 21:36:00 +08:00
parent a588208de6
commit 03ffb08ddd
9 changed files with 141 additions and 5 deletions
+1 -1
View File
@@ -1584,7 +1584,7 @@ impl Table {
let inner = self_.inner_ref()?.clone();
future_into_py(self_.py(), async move {
let job = inner.refresh_column_async(column).await.infer_error()?;
Ok(crate::job::Job::new(job))
Ok(crate::job::RefreshJob::new(job))
})
}