8000 remove deprecated function SessionContext::tables · Michael-J-Ward/datafusion-python@ccb2f99 · GitHub
[go: up one dir, main page]

Skip to content

Commit ccb2f99

Browse files
remove deprecated function SessionContext::tables
The suggested replacement `Session::catalog` is already included. Ref: apache/datafusion#9627
1 parent 79f01e7 commit ccb2f99

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/context.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -741,11 +741,6 @@ impl PySessionContext {
741741
}
742742
}
743743

744-
pub fn tables(&self) -> HashSet<String> {
745-
#[allow(deprecated)]
746-
self.ctx.tables().unwrap()
747-
}
748-
749744
pub fn table(&self, name: &str, py: Python) -> PyResult<PyDataFrame> {
750745
let x = wait_for_future(py, self.ctx.table(name)).map_err(DataFusionError::from)?;
751746
Ok(PyDataFrame::new(x))

0 commit comments

Comments
 (0)
0