1) Added support for SYSTEM, CONCURRENTLY and TABLESPACE options in REINDEX. #6381

2) Added new/missing options to the VACUUM command. #6397
3) Added SKIP_LOCKED and BUFFER_USAGE_LIMIT option to Analyze command. #6415
This commit is contained in:
Akshay Joshi
2023-07-27 17:34:25 +05:30
committed by GitHub
parent e177344ae1
commit a460644ae8
21 changed files with 1339 additions and 184 deletions

View File

@@ -470,19 +470,19 @@ STORAGE_DIR = os.path.join(DATA_DIR, 'storage')
##########################################################################
DEFAULT_BINARY_PATHS = {
"pg": "",
"pg-10": "",
"pg-11": "",
"pg-12": "",
"pg-13": "",
"pg-14": "",
"pg-15": "",
"pg-16": "",
"ppas": "",
"ppas-10": "",
"ppas-11": "",
"ppas-12": "",
"ppas-13": "",
"ppas-14": "",
"ppas-15": ""
"ppas-15": "",
"ppas-16": ""
}
##########################################################################