From 949dd751a1b63f3a2255e9c68f51eb91f4614227 Mon Sep 17 00:00:00 2001 From: shuiyisong Date: Tue, 17 Oct 2023 16:23:26 +0800 Subject: [PATCH] chore: fix clippy --- src/cmd/src/cli/export.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/src/cli/export.rs b/src/cmd/src/cli/export.rs index 7424e9e49306..5f3ab79f1072 100644 --- a/src/cmd/src/cli/export.rs +++ b/src/cmd/src/cli/export.rs @@ -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() );