Skip to content

Commit

Permalink
fix: cli export database default value (#3259)
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun authored Jan 30, 2024
1 parent 43ef082 commit 60e760b
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 @@ -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.
Expand Down

0 comments on commit 60e760b

Please sign in to comment.