mirror of https://github.com/citusdata/citus.git
22 lines
522 B
C
22 lines
522 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* worker_shard_copy.c
|
|
* Copy data to destination shard in a push approach.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef WORKER_SHARD_COPY_H_
|
|
#define WORKER_SHARD_COPY_H_
|
|
|
|
struct FullRelationName;
|
|
|
|
extern DestReceiver * CreateShardCopyDestReceiver(
|
|
struct FullRelationName* relationName,
|
|
uint32_t destinationNodeId);
|
|
|
|
#endif /* WORKER_SHARD_COPY_H_ */
|