mirror of https://github.com/citusdata/citus.git
Fix typo in upgrade function
parent
68bfc8d1c0
commit
22a18fc1f2
|
@ -123,7 +123,7 @@ END;
|
||||||
GROUP BY result;
|
GROUP BY result;
|
||||||
IF enforce_version_check AND worker_node_version_count != 1 THEN
|
IF enforce_version_check AND worker_node_version_count != 1 THEN
|
||||||
RAISE EXCEPTION 'All nodes should have the same Citus version installed. Currently '
|
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
|
ELSE
|
||||||
RAISE DEBUG 'All worker nodes have the same Citus version';
|
RAISE DEBUG 'All worker nodes have the same Citus version';
|
||||||
END IF;
|
END IF;
|
||||||
|
|
|
@ -123,7 +123,7 @@ END;
|
||||||
GROUP BY result;
|
GROUP BY result;
|
||||||
IF enforce_version_check AND worker_node_version_count != 1 THEN
|
IF enforce_version_check AND worker_node_version_count != 1 THEN
|
||||||
RAISE EXCEPTION 'All nodes should have the same Citus version installed. Currently '
|
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
|
ELSE
|
||||||
RAISE DEBUG 'All worker nodes have the same Citus version';
|
RAISE DEBUG 'All worker nodes have the same Citus version';
|
||||||
END IF;
|
END IF;
|
||||||
|
|
Loading…
Reference in New Issue