Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

analyze index space add --config option #398

Merged
merged 11 commits into from
Aug 26, 2024
2 changes: 2 additions & 0 deletions diag_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,8 @@ def __init__(self):
self.parser.add_option('--table_name', type='string', help="table name")
self.parser.add_option('--index_name', type='string', help="specify the index name if an index already exists in the table")
self.parser.add_option('--column_names', type='string', help="specify the column names of index that have not been created yet;eg:--column_names=c1,c2,c3")
self.parser.add_option('-c', type='string', help='obdiag custom config', default=os.path.expanduser('~/.obdiag/config.yml'))
self.parser.add_option('--config', action="append", type="string", help='config options Format: --config key=value')

def init(self, cmd, args):
super(ObdiagAnalyzeIndexSpaceCommand, self).init(cmd, args)
Expand Down
Loading