From 60e760b168ff9f2b395e400958bbab6647a7b488 Mon Sep 17 00:00:00 2001 From: tison Date: Tue, 30 Jan 2024 17:56:05 +0800 Subject: [PATCH] fix: cli export database default value (#3259) Signed-off-by: tison --- 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 79c1694a1c21..956460435d47 100644 --- a/src/cmd/src/cli/export.rs +++ b/src/cmd/src/cli/export.rs @@ -58,8 +58,8 @@ pub struct ExportCommand { #[clap(long)] output_dir: String, - /// The name of the catalog to export. Default to "greptime-*"". - #[clap(long, default_value = "")] + /// The name of the catalog to export. + #[clap(long, default_value = "greptime-*")] database: String, /// Parallelism of the export.