mirror of https://github.com/citusdata/citus.git
Set default value of isactive to true
With this change, we set to default value of isactive column to true so that upgrading users all nodes will be marked as active to not break their environment.pull/1938/head
parent
3a8bfa3c41
commit
58a809b0e8
|
@ -2,7 +2,7 @@
|
|||
|
||||
SET search_path = 'pg_catalog';
|
||||
|
||||
ALTER TABLE pg_dist_node ADD isactive bool;
|
||||
ALTER TABLE pg_dist_node ADD isactive bool NOT NULL DEFAULT true;
|
||||
|
||||
DROP FUNCTION IF EXISTS master_add_node(text, integer);
|
||||
|
||||
|
|
Loading…
Reference in New Issue