Added PG/EPAS 14 binary path entry in the preferences dialog.

This commit is contained in:
Akshay Joshi 2021-09-20 14:59:05 +05:30
parent c142296f3f
commit 522a92586a
2 changed files with 9 additions and 1 deletions

View File

@ -452,12 +452,14 @@ DEFAULT_BINARY_PATHS = {
"pg-11": "",
"pg-12": "",
"pg-13": "",
"pg-14": "",
"ppas": "",
"ppas-9.6": "",
"ppas-10": "",
"ppas-11": "",
"ppas-12": "",
"ppas-13": ""
"ppas-13": "",
"ppas-14": ""
}
##########################################################################

View File

@ -78,6 +78,9 @@ BINARY_PATHS = {
"isDefault": False},
{"version": "130000", "next_major_version": "140000",
"serverType": gettext("EDB Advanced Server 13"), "binaryPath": None,
"isDefault": False},
{"version": "140000", "next_major_version": "150000",
"serverType": gettext("EDB Advanced Server 14"), "binaryPath": None,
"isDefault": False}
],
"pg_bin_paths": [
@ -95,6 +98,9 @@ BINARY_PATHS = {
"isDefault": False},
{"version": "130000", "next_major_version": "140000",
"serverType": gettext("PostgreSQL 13"), "binaryPath": None,
"isDefault": False},
{"version": "140000", "next_major_version": "150000",
"serverType": gettext("PostgreSQL 14"), "binaryPath": None,
"isDefault": False}
]
}