mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-07 19:22:02 +03:00
* chore(mcs, scripts): extra/columnstore_review.sh with scripts/columnstore_review.sh with 1.4.13 version * feat(mcs): add review command to the Tools section. It's the wrapper for columnstore_review.sh * feat(mcs): add review command implementation to tools.py file + constansts.py * chore(mcs): add separator argument to cook_sh_arg function * docs(mcs): updated README.md and mcs.1 man file
12 lines
355 B
Python
12 lines
355 B
Python
import os
|
|
|
|
from cmapi_server.constants import MCS_INSTALL_BIN
|
|
|
|
|
|
MCS_CLI_ROOT_PATH = os.path.dirname(__file__)
|
|
MCS_CLI_LOG_CONF_PATH = os.path.join(MCS_CLI_ROOT_PATH, 'mcs_cli_log.conf')
|
|
|
|
MCS_BACKUP_MANAGER_SH = os.path.join(MCS_INSTALL_BIN, 'mcs_backup_manager.sh')
|
|
MCS_COLUMNSTORE_REVIEW_SH = os.path.join(
|
|
MCS_INSTALL_BIN, 'columnstore_review.sh'
|
|
) |