Skip to content

Commit 758d580

Browse files
committed
chore: fix copy from file result count
1 parent 28293f8 commit 758d580

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/execution/dml/copy_from_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ impl CopyFromFile {
114114
}
115115

116116
fn return_result(size: usize, tx: Sender<Tuple>) -> Result<(), DatabaseError> {
117-
let tuple = TupleBuilder::build_result(format!("import {} rows", size));
117+
let tuple = TupleBuilder::build_result(size.to_string());
118118

119119
tx.send(tuple).map_err(|_| DatabaseError::ChannelClose)?;
120120
Ok(())

0 commit comments

Comments
 (0)