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_OPTION_H
7 #define TIMESCALEDB_TSL_FDW_OPTION_H
8 
9 #include <postgres.h>
10 
11 extern void option_validate(List *options_list, Oid catalog);
12 extern List *option_extract_extension_list(const char *extensionsString, bool warn_on_missing);
13 extern bool option_get_from_options_list_int(List *options, const char *optionname, int *value);
14 
15 #endif /* TIMESCALEDB_TSL_FDW_OPTION_H */
16