mirror of https://github.com/citusdata/citus.git
21 lines
701 B
C
21 lines
701 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* replicate_none_dist_table_shard.h
|
|
* Routines to replicate shard of none-distributed table to
|
|
* a remote node.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef REPLICA_LOCAL_TABLE_SHARD_H
|
|
#define REPLICA_LOCAL_TABLE_SHARD_H
|
|
|
|
extern void NoneDistTableReplicateCoordinatorPlacement(Oid noneDistTableId,
|
|
List *targetNodeList);
|
|
extern void NoneDistTableDeleteCoordinatorPlacement(Oid noneDistTableId);
|
|
extern void NoneDistTableDropCoordinatorPlacementTable(Oid noneDistTableId);
|
|
|
|
#endif /* REPLICA_LOCAL_TABLE_SHARD_H */
|