Skip to content

Commit

Permalink
misc fix: removing dbg macro and fix typo (#2851)
Browse files Browse the repository at this point in the history
  • Loading branch information
illumination-k committed Mar 8, 2022
1 parent d98e752 commit 34f8792
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion polars/polars-lazy/src/dot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ impl LogicalPlan {

let pred = fmt_predicate(predicate.as_ref());
let current_node = format!(
"PARQUET SCAN {};\nπ {}/{};\nσ {} [{:?}]",
"IPC SCAN {};\nπ {}/{};\nσ {} [{:?}]",
path.to_string_lossy(),
n_columns,
total_columns,
Expand Down
1 change: 0 additions & 1 deletion polars/polars-lazy/src/frame/ipc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ impl Default for ScanArgsIpc {

impl LazyFrame {
fn scan_ipc_impl(path: String, args: ScanArgsIpc) -> Result<Self> {
dbg!(&args.row_count);
let options = IpcScanOptions {
n_rows: args.n_rows,
cache: args.cache,
Expand Down

0 comments on commit 34f8792

Please sign in to comment.