Merge pull request #1332 from citusdata/set_isactive_to_true

Set default value of isactive to true
pull/1334/head
Burak Yücesoy 2017-04-17 23:38:45 -08:00 committed by GitHub
commit be6dfaa596
1 changed files with 1 additions and 1 deletions

View File

@ -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);