Skip to content

Commit

Permalink
chore: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
shuiyisong committed Oct 17, 2023
1 parent f634bde commit 949dd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/src/cli/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ impl Export {
.into_string()
.unwrap()
.replace(".parquet", "");
let _ = write!(
let _ = writeln!(
acc,
"copy {} from '{}' with (format='parquet');\n",
"copy {} from '{}' with (format='parquet');",
table_name,
file.path().to_str().unwrap()
);
Expand Down

0 comments on commit 949dd75

Please sign in to comment.