mirror of https://github.com/citusdata/citus.git
Merge pull request #1006 from citusdata/bugfix/placement_id_readfunc
Use READ_UINT64_FIELD for placement ID in ReadShardPlacementpull/994/head
commit
f2d151cfeb
|
@ -261,7 +261,7 @@ ReadShardPlacement(READFUNC_ARGS)
|
||||||
{
|
{
|
||||||
READ_LOCALS(ShardPlacement);
|
READ_LOCALS(ShardPlacement);
|
||||||
|
|
||||||
READ_OID_FIELD(placementId);
|
READ_UINT64_FIELD(placementId);
|
||||||
READ_UINT64_FIELD(shardId);
|
READ_UINT64_FIELD(shardId);
|
||||||
READ_UINT64_FIELD(shardLength);
|
READ_UINT64_FIELD(shardLength);
|
||||||
READ_ENUM_FIELD(shardState, RelayFileState);
|
READ_ENUM_FIELD(shardState, RelayFileState);
|
||||||
|
|
Loading…
Reference in New Issue