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/1332/head
parent
f5a406a23e
commit
00747dc8c9
|
@ -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