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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user