From 22a18fc1f25c89030842f6659efa5bedfbcdc288 Mon Sep 17 00:00:00 2001 From: Marco Slot Date: Wed, 16 Mar 2022 22:01:47 +0100 Subject: [PATCH] Fix typo in upgrade function --- .../sql/udfs/citus_finalize_upgrade_to_citus11/11.0-1.sql | 2 +- .../sql/udfs/citus_finalize_upgrade_to_citus11/latest.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/11.0-1.sql b/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/11.0-1.sql index d93dd0f93..ffdc87fc0 100644 --- a/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/11.0-1.sql +++ b/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/11.0-1.sql @@ -123,7 +123,7 @@ END; GROUP BY result; IF enforce_version_check AND worker_node_version_count != 1 THEN RAISE EXCEPTION 'All nodes should have the same Citus version installed. Currently ' - 'the some of the workers has version different versions'; + 'some of the workers have different versions.'; ELSE RAISE DEBUG 'All worker nodes have the same Citus version'; END IF; diff --git a/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/latest.sql b/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/latest.sql index d93dd0f93..ffdc87fc0 100644 --- a/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/latest.sql +++ b/src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/latest.sql @@ -123,7 +123,7 @@ END; GROUP BY result; IF enforce_version_check AND worker_node_version_count != 1 THEN RAISE EXCEPTION 'All nodes should have the same Citus version installed. Currently ' - 'the some of the workers has version different versions'; + 'some of the workers have different versions.'; ELSE RAISE DEBUG 'All worker nodes have the same Citus version'; END IF;