Skip to content

Commit 11e0ce8

Browse files
committed
remove print statements
1 parent 6d55e10 commit 11e0ce8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

arrow-pg/src/row_encoder.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ impl RowEncoder {
3333
if self.curr_idx == self.rb.num_rows() {
3434
return None;
3535
}
36-
println!("DATAFUSION POSTGRES INDEX = {}, NUM OF ROWS = {}", self.curr_idx, self.rb.num_rows());
3736
let mut encoder = DataRowEncoder::new(self.fields.clone());
3837
for col in 0..self.rb.num_columns() {
3938
let array = self.rb.column(col);

0 commit comments

Comments
 (0)