mirror of https://github.com/citusdata/citus.git
16 lines
423 B
C
16 lines
423 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* repair_shards.h
|
|
* Code used to move shards around.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
#include "nodes/pg_list.h"
|
|
|
|
extern uint64 ShardListSizeInBytes(List *colocatedShardList,
|
|
char *workerNodeName, uint32 workerNodePort);
|