File tree Expand file tree Collapse file tree 4 files changed +14
-15
lines changed Expand file tree Collapse file tree 4 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,9 @@ postgres=#
126
126
Planning</ulink> can have the expected effects on planning
127
127
unless any other hint conflicts with the planner method
128
128
configuration parameters. The last one among hints on the same
129
- GUC parameter makes effect. <link linkend="pg-hint-plan-hint-GUC">GUC
130
- parameters for pg_hint_plan</link> are also settable by this
131
- hint but it won't work as your expectation. See
132
- <link linkend="pg-hint-plan-restrictions">Restrictions</link> for details.
129
+ GUC parameter makes effect. GUC parameters for pg_hint_plan are also settable by this
130
+ hint but it won't work as your expectation. See restrictions for
131
+ details <xref linkend="pg-hint-plan-restrictions">.
133
132
</para>
134
133
</sect4>
135
134
</sect3>
Original file line number Diff line number Diff line change @@ -55,17 +55,17 @@ extern PGDLLIMPORT double parallel_setup_cost;
55
55
extern PGDLLIMPORT int effective_cache_size ;
56
56
extern Cost disable_cost ;
57
57
extern int max_parallel_workers_per_gather ;
58
- extern bool enable_seqscan ;
59
- extern bool enable_indexscan ;
60
- extern bool enable_indexonlyscan ;
61
- extern bool enable_bitmapscan ;
62
- extern bool enable_tidscan ;
58
+ extern PGDLLIMPORT bool enable_seqscan ;
59
+ extern PGDLLIMPORT bool enable_indexscan ;
60
+ extern PGDLLIMPORT bool enable_indexonlyscan ;
61
+ extern PGDLLIMPORT bool enable_bitmapscan ;
62
+ extern PGDLLIMPORT bool enable_tidscan ;
63
63
extern bool enable_sort ;
64
64
extern bool enable_hashagg ;
65
- extern bool enable_nestloop ;
65
+ extern PGDLLIMPORT bool enable_nestloop ;
66
66
extern bool enable_material ;
67
- extern bool enable_mergejoin ;
68
- extern bool enable_hashjoin ;
67
+ extern PGDLLIMPORT bool enable_mergejoin ;
68
+ extern PGDLLIMPORT bool enable_hashjoin ;
69
69
extern int constraint_exclusion ;
70
70
71
71
extern double clamp_row_est (double nrows );
Original file line number Diff line number Diff line change 20
20
/*
21
21
* allpaths.c
22
22
*/
23
- extern bool enable_geqo ;
24
- extern int geqo_threshold ;
23
+ extern PGDLLIMPORT bool enable_geqo ;
24
+ extern PGDLLIMPORT int geqo_threshold ;
25
25
extern int min_parallel_relation_size ;
26
26
27
27
/* Hook for plugins to get control in set_rel_pathlist() */
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ extern char *HbaFileName;
262
262
extern char * IdentFileName ;
263
263
extern char * external_pid_file ;
264
264
265
- extern char * application_name ;
265
+ extern PGDLLIMPORT char * application_name ;
266
266
267
267
extern int tcp_keepalives_idle ;
268
268
extern int tcp_keepalives_interval ;
You can’t perform that action at this time.
0 commit comments