mirror of https://github.com/citusdata/citus.git
Merge pull request #1332 from citusdata/set_isactive_to_true
Set default value of isactive to truepull/1334/head
commit
be6dfaa596
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
SET search_path = 'pg_catalog';
|
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);
|
DROP FUNCTION IF EXISTS master_add_node(text, integer);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue