We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c906fd3 commit c3cf884Copy full SHA for c3cf884
datafusion/physical-plan/src/insert.rs
@@ -272,7 +272,6 @@ impl ExecutionPlan for DataSinkExec {
272
/// ```
273
fn make_count_batch(count: u64) -> RecordBatch {
274
let array = Arc::new(Int64Array::from(vec![count as i64])) as ArrayRef;
275
- println!("array: {array:?}");
276
RecordBatch::try_from_iter_with_nullable(vec![("count", array, false)]).unwrap()
277
}
278
0 commit comments