fix citus_indent error

pull/869/head
Brian Cloutier 2016-10-19 18:01:30 +03:00
parent 6f4e53a5c3
commit bceedcf2b1
1 changed files with 2 additions and 1 deletions

View File

@ -291,7 +291,8 @@ master_create_distributed_table(PG_FUNCTION_ARGS)
CharGetDatum(distributionMethod);
newValues[Anum_pg_dist_partition_partkey - 1] =
CStringGetTextDatum(distributionKeyString);
newValues[Anum_pg_dist_partition_colocationid - 1] = Int64GetDatum(INVALID_COLOCATION_ID);
newValues[Anum_pg_dist_partition_colocationid - 1] = Int64GetDatum(
INVALID_COLOCATION_ID);
newValues[Anum_pg_dist_partition_repmodel - 1] = CharGetDatum(replicationModel);
newTuple = heap_form_tuple(RelationGetDescr(pgDistPartition), newValues, newNulls);