Skip to content

Commit

Permalink
Remove unnecessary struct
Browse files Browse the repository at this point in the history
We now don't use this one.
  • Loading branch information
wence- committed Oct 7, 2024
1 parent 1bc6cef commit c01908a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
15 changes: 0 additions & 15 deletions crates/polars-python/src/lazyframe/visitor/nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,21 +191,6 @@ pub struct Join {
options: PyObject,
}

#[pyclass]
/// IEJoin operation
pub struct IEJoin {
#[pyo3(get)]
input_left: usize,
#[pyo3(get)]
input_right: usize,
#[pyo3(get)]
left_on: Vec<PyExprIR>,
#[pyo3(get)]
right_on: Vec<PyExprIR>,
#[pyo3(get)]
options: PyObject,
}

#[pyclass]
/// Adding columns to the table without a Join
pub struct HStack {
Expand Down
1 change: 0 additions & 1 deletion py-polars/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ fn _ir_nodes(_py: Python, m: &Bound<PyModule>) -> PyResult<()> {
m.add_class::<Cache>().unwrap();
m.add_class::<GroupBy>().unwrap();
m.add_class::<Join>().unwrap();
m.add_class::<IEJoin>().unwrap();
m.add_class::<HStack>().unwrap();
m.add_class::<Reduce>().unwrap();
m.add_class::<Distinct>().unwrap();
Expand Down

0 comments on commit c01908a

Please sign in to comment.