1 /*
2  * This file and its contents are licensed under the Timescale License.
3  * Please see the included NOTICE for copyright information and
4  * LICENSE-TIMESCALE for a copy of the license.
5  */
6 #ifndef TIMESCALEDB_TSL_CHUNK_COPY_H
7 #define TIMESCALEDB_TSL_CHUNK_COPY_H
8 
9 extern void chunk_copy(Oid chunk_relid, const char *src_node, const char *dst_node,
10 					   bool delete_on_src_node);
11 extern void chunk_copy_cleanup(const char *operation_id);
12 
13 #endif /* TIMESCALEDB_TSL_CHUNK_COPY_H */
14