Storage: use Postgres 15 as default (#2809)

This commit is contained in:
Alexander Bayandin
2023-05-25 15:55:46 +01:00
committed by GitHub
parent ab2757f64a
commit 08e7d2407b
4 changed files with 5 additions and 5 deletions

View File

@@ -535,8 +535,8 @@ def export_timeline(
def main(args: argparse.Namespace):
# any psql version will do here. use current DEFAULT_PG_VERSION = 14
psql_path = str(Path(args.pg_distrib_dir) / "v14" / "bin" / "psql")
# any psql version will do here. use current DEFAULT_PG_VERSION = 15
psql_path = str(Path(args.pg_distrib_dir) / "v15" / "bin" / "psql")
old_pageserver_host = args.old_pageserver_host
new_pageserver_host = args.new_pageserver_host