Skip to content

Commit fcf8350

Browse files
committed
fix comment
1 parent 35fc194 commit fcf8350

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/content/pypaimon/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ paimon table alter DATABASE.TABLE [--ignore-if-not-exists] SUBCOMMAND [OPTIONS]
261261

262262
**Global Options:**
263263

264-
- `--ignore-if-not-exists`: Do not raise error if table does not exist
264+
- `--ignore-if-not-exists, -i`: Do not raise error if table does not exist
265265

266266
#### Set Option
267267

paimon-python/pypaimon/cli/cli_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ def add_table_subcommands(table_parser):
495495
help='Table identifier in format: database.table'
496496
)
497497
alter_parser.add_argument(
498-
'--ignore-if-not-exists',
498+
'--ignore-if-not-exists', '-i',
499499
action='store_true',
500500
help='Do not raise error if table does not exist'
501501
)

0 commit comments

Comments
 (0)