mirror of https://github.com/citusdata/citus.git
Use right sizeof in UpdateRelationColocationGroup
parent
5fafde441d
commit
7faf4657b7
|
@ -638,7 +638,7 @@ UpdateRelationColocationGroup(Oid distributedRelationId, uint32 colocationId)
|
||||||
distributedRelationName)));
|
distributedRelationName)));
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(values, 0, sizeof(replace));
|
memset(values, 0, sizeof(values));
|
||||||
memset(isNull, false, sizeof(isNull));
|
memset(isNull, false, sizeof(isNull));
|
||||||
memset(replace, false, sizeof(replace));
|
memset(replace, false, sizeof(replace));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue