1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-26 23:43:30 +03:00

Mark assorted GUC variables as PGDLLIMPORT.

This makes life easier for extension authors.

Metin Doslu

Discussion: http://postgr.es/m/CAL1dPcfa45o1dC-c4t-48v0OZE6oy4ChJhObrtkK8mzNfXqDTA@mail.gmail.com
This commit is contained in:
Robert Haas
2018-02-09 15:54:45 -05:00
parent be42015fcc
commit 935dee9ad5
4 changed files with 24 additions and 24 deletions

View File

@@ -20,10 +20,10 @@
/*
* allpaths.c
*/
extern bool enable_geqo;
extern int geqo_threshold;
extern int min_parallel_table_scan_size;
extern int min_parallel_index_scan_size;
extern PGDLLIMPORT bool enable_geqo;
extern PGDLLIMPORT int geqo_threshold;
extern PGDLLIMPORT int min_parallel_table_scan_size;
extern PGDLLIMPORT int min_parallel_index_scan_size;
/* Hook for plugins to get control in set_rel_pathlist() */
typedef void (*set_rel_pathlist_hook_type) (PlannerInfo *root,