1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

fix(mcs): MCOL-5618: change list option to --list and refactor.

fix(mcs):  list option to -li/--list for mcs backup, restore and dbrm_restore commands
fix(mcs): add missed option "aro"
fix(mcs): resort options for backup and dbrm_backup to keep same ordering as in original scrypt
fix(mcs docs): updated README.md + mcs.1
This commit is contained in:
mariadb-AlanMologorsky
2025-03-14 17:58:23 +03:00
committed by Alan Mologorsky
parent 271e3d5956
commit 91e82f4d15
4 changed files with 148 additions and 116 deletions

View File

@ -144,6 +144,16 @@ def restore(
)
)
] = '',
P: Annotated[
int,
typer.Option(
'-P', '--parallel',
help=(
'Determines number of decompression and mdbstream threads. '
'Ignored if "-c/--compress" argument not set.'
)
)
] = 4,
ha: Annotated[
bool,
typer.Option(
@ -221,16 +231,6 @@ def restore(
show_default=False
)
] = '',
P: Annotated[
int,
typer.Option(
'-P', '--parallel',
help=(
'Determines number of decompression and mdbstream threads. '
'Ignored if "-c/--compress" argument not set.'
)
)
] = 4,
q: Annotated[
bool,
typer.Option(
@ -248,7 +248,7 @@ def restore(
list: Annotated[
bool,
typer.Option(
'list',
'-li', '--list',
help='List backups.'
)
] = False
@ -318,7 +318,7 @@ def dbrm_restore(
list: Annotated[
bool,
typer.Option(
'list',
'-li', '--list',
help='List backups.'
)
] = False