diff options
author | Andres Freund <andres@anarazel.de> | 2018-02-22 12:58:43 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2018-02-22 12:58:43 -0800 |
commit | 83fce670ea395c4e65c34886518273bf478615c4 (patch) | |
tree | f989afa44b20291a11f6bfb356342b0f32009300 /src/include/optimizer/paths.h | |
parent | 66e203c851abaec64aad1e199c8f881b8e3207bc (diff) |
Backport: Mark assorted GUC variables as PGDLLIMPORT.
This backpatches 935dee9ad5a8d12f4d3b772a6e6c99d245e5ad44 to the
the branches requested by extension authors.
Original-Author: Metin Doslu
Original-Committer: Robert Haas
Author: Brian Cloutier
Diffstat (limited to 'src/include/optimizer/paths.h')
-rw-r--r-- | src/include/optimizer/paths.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index 44abe8336a5..6048a3e5d72 100644 --- a/src/include/optimizer/paths.h +++ b/src/include/optimizer/paths.h @@ -20,9 +20,9 @@ /* * allpaths.c */ -extern bool enable_geqo; -extern int geqo_threshold; -extern int min_parallel_relation_size; +extern PGDLLIMPORT bool enable_geqo; +extern PGDLLIMPORT int geqo_threshold; +extern PGDLLIMPORT int min_parallel_relation_size; /* Hook for plugins to get control in set_rel_pathlist() */ typedef void (*set_rel_pathlist_hook_type) (PlannerInfo *root, |