diff options
Diffstat (limited to 'contrib/pg_upgrade/pg_upgrade.c')
-rw-r--r-- | contrib/pg_upgrade/pg_upgrade.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/pg_upgrade.c b/contrib/pg_upgrade/pg_upgrade.c index 54c886e11ca..02bdb63eb08 100644 --- a/contrib/pg_upgrade/pg_upgrade.c +++ b/contrib/pg_upgrade/pg_upgrade.c @@ -86,11 +86,12 @@ main(int argc, char **argv) setup(argv[0], live_check); check_cluster_versions(); - check_cluster_compatibility(live_check); get_sock_dir(&old_cluster, live_check); get_sock_dir(&new_cluster, false); + check_cluster_compatibility(live_check); + check_old_cluster(live_check, &sequence_script_file_name); |