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_FDW_MODIFY_PLAN_H
7 #define TIMESCALEDB_TSL_FDW_MODIFY_PLAN_H
8 
9 #include <postgres.h>
10 
11 extern List *fdw_plan_foreign_modify(PlannerInfo *root, ModifyTable *plan, Index result_relation,
12 									 int subplan_index);
13 
14 #endif /* TIMESCALEDB_TSL_FDW_MODIFY_PLAN_H */
15