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_DEBUG_H
7 #define TIMESCALEDB_DEBUG_H
8 
9 #include <postgres.h>
10 #include <lib/stringinfo.h>
11 #include <nodes/pathnodes.h>
12 #include <utils/guc.h>
13 #include "fdw/fdw_utils.h"
14 #include "fdw/relinfo.h"
15 
16 #ifdef TS_DEBUG
17 extern void tsl_debug_log_rel_with_paths(PlannerInfo *root, RelOptInfo *rel,
18 										 UpperRelationKind *upper_stage);
19 #endif
20 
21 #endif /* TIMESCALEDB_DEBUG_H */
22