Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions native/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,3 @@ harness = false
[[bench]]
name = "parquet_decode"
harness = false

[[bench]]
name = "filter"
harness = false
112 changes: 0 additions & 112 deletions native/core/benches/filter.rs

This file was deleted.

9 changes: 0 additions & 9 deletions native/core/src/execution/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,3 @@ pub use datafusion_comet_spark_expr::timezone;
mod memory_pools;
pub(crate) mod tracing;
pub(crate) mod utils;

#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
6 changes: 5 additions & 1 deletion native/core/src/execution/operators/copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ impl CopyExec {
mode,
}
}

pub fn mode(&self) -> &CopyMode {
&self.mode
}
}

impl DisplayAs for CopyExec {
Expand Down Expand Up @@ -237,7 +241,7 @@ impl RecordBatchStream for CopyStream {
}

/// Copy an Arrow Array
fn copy_array(array: &dyn Array) -> ArrayRef {
pub(crate) fn copy_array(array: &dyn Array) -> ArrayRef {
let capacity = array.len();
let data = array.to_data();

Expand Down
Loading