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

@@ -281,8 +281,8 @@ class PGUtilitiesBackupFeatureTest(BaseFeatureTest):
default_binary_path = self.server['default_binary_paths']
if default_binary_path is not None:
def get_server_version_string():
server_version = {150000: '15', 140000: '14', 130000: '13',
120000: '12', 110000: '11', 100000: '10'}
server_version = {160000: '16', 150000: '15', 140000: '14',
130000: '13', 120000: '12', 110000: '11'}
for k, v in server_version.items():
if k <= self.server_information['server_version']:
return v