OSDN Git Service

Fix definition of is_dummy_rel based on changes in community
[pghintplan/pg_hint_plan.git] / doc / pg_hint_plan.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD html 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html lang="en_US">
3 <head>
4 <title>pg_hint_plan</title>
5 <!-- Uncoment after the tool has been hosted somewhere.
6 <link rel="home" title="pg_hint_plan" href="index.html">
7 -->
8 <link rel="stylesheet" type="text/css" href="style.css">
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
10 <!--
11 <style type="text/css">
12 h2 { border-style:solid none none none; margin-top: 2em; }
13 h3 { margin-top: 2em; }
14 dt { margin-top: 0.5em; margin-bottom: 0.3em;}
15 pre { margin: 0 2em 0 2em; padding:0.3em; border-style: solid; border-width:0.1em; border-color: #97A69F; background-color: #DEFFEF; }
16 </style>
17 -->
18 </head>
19
20 <body>
21 <h1 id="pg_hint_plan">pg_hint_plan 1.3</h1>
22 <div class="navigation">
23   <a href="pg_hint_plan.html">pg_hint_plan</a>
24 </div>
25 <hr>
26
27 <div class="index">
28 <ol>
29 <li><a href="#name">Name</a></li>
30 <li><a href="#synopsis">Synopsis</a></li>
31 <li><a href="#description">Description</a>
32 <li><a href="#install">Installation</a></li>
33 <li><a href="#uninstall">Uninstallation</a></li>
34 <li><a href="#examples">Hint descriptions</a></li>
35 <li><a href="#hint_syntax">Hint syntax</a></li>
36 <li><a href="#restrictions">Restrictions</a></li>
37 <li><a href="#techniques">Techniques to hint on disired targets</a></li>
38 <li><a href="#errors">Errors of hints</a></li>
39 <li><a href="#func_limits">Functional limitations</a></li>
40 <li><a href="#requirement">Requirements</a></li>
41 <li><a href="#seealso">See Also</a></li>
42 <li><a href="hint_list.html">Appendix A. Hints list</a></li>
43 </div>
44
45 <h2 id="name">Name</h2>
46 <p>pg_hint_plan -- controls execution plan with hinting phrases in comment of special form.</p>
47
48 <h2 id="synopsis">Synopsis</h2>
49 <p>PostgreSQL uses cost based optimizer, which utilizes data statistics, not static rules. The planner (optimizer) esitimates costs of each possible execution plans for a SQL statement then the execution plan with the lowest cost finally be executed.  The planner does its best to select the best best execution plan, but not perfect, since it doesn't count some properties of the data, for example, correlation between columns.</p>
50 <p>pg_hint_plan makes it possible to tweak execution plans using so-called "hints", which are simple descriptions in the SQL comment of special form.</p>
51
52 <h2 id="description">Description</h2>
53
54 <h3 id="hint-rule">Basic Usage</h3>
55 <p>pg_hint_plan reads hinting phrases in a comment of special form given with the target SQL statement. The special form is beginning by the character sequence "/*+" and ends with "*/". Hint phrases are consists of hint name and following parameters enclosed by parentheses and delimited by spaces. Each hinting phrases can be delimited by new lines for readability.</p>
56
57 <p>In the example below , hash join is selected as the joning method and scanning pgbench_accounts by sequential scan method.</p>
58 <pre>
59 postgres=# /*+
60 postgres*#    <span class="strong">HashJoin(a b)</span>
61 postgres*#    <span class="strong">SeqScan(a)</span>
62 postgres*#  */
63 postgres-# EXPLAIN SELECT *
64 postgres-#    FROM pgbench_branches b
65 postgres-#    JOIN pgbench_accounts a ON b.bid = a.bid
66 postgres-#   ORDER BY a.aid;
67                                       QUERY PLAN
68 ---------------------------------------------------------------------------------------
69  Sort  (cost=31465.84..31715.84 rows=100000 width=197)
70    Sort Key: a.aid
71    ->  <span class="strong">Hash Join</span>  (cost=1.02..4016.02 rows=100000 width=197)
72          Hash Cond: (a.bid = b.bid)
73          ->  <span class="strong">Seq Scan on pgbench_accounts a</span>  (cost=0.00..2640.00 rows=100000 width=97)
74          ->  Hash  (cost=1.01..1.01 rows=1 width=100)
75                ->  Seq Scan on pgbench_branches b  (cost=0.00..1.01 rows=1 width=100)
76 (7 rows)
77
78 postgres=# </pre>
79
80 <h2 id="examples">The hint table</h2>
81 <p> Hints are described in a comment in a special form in the above
82 section. This is inconvenient in the case where queries cannot be
83 edited. In the case hints can be placed in a special table named
84 "hint_plan.hints". The table consists of the following columns.</p>
85 <table>
86 <thead>
87 <tr>
88 <tr><th>column</th><th>description</th></tr>
89 </tr></thead>
90 <tbody>
91 <tr><td>id</td>
92   <td>Unique number to identify a row for a hint. This column is filled automatically by sequence.</td></tr>
93 <tr><td>norm_query_string</td>
94   <td>A pattern matches to the query to be hinted. Constants in the query have to be replace with '?' as in the following example. White space is significant in the pattern.</td></tr>
95 <tr><td>application_name</td>
96   <td>The value of application_name of sessions to apply the hint. The hint in the example below applies to sessions connected from psql. An empty string means sessions of any application_name.</td></tr>
97 <tr><td>hints</td>
98   <td>Hint phrase. This must be a series of hints excluding surrounding comment marks.</td></tr>
99 </tbody>
100 </table>
101
102 <p>The following example shows how to operate with the hint table.</p>
103 <pre>
104 <span class="strong">postgres=#</span> INSERT INTO hint_plan.hints(norm_query_string, application_name, hints)
105 <span class="strong">postgres-#</span>     VALUES (
106 <span class="strong">postgres(#</span>         'EXPLAIN (COSTS false) SELECT * FROM t1 WHERE t1.id = ?;',
107 <span class="strong">postgres(#</span>         '',
108 <span class="strong">postgres(#</span>         'SeqScan(t1)'
109 <span class="strong">postgres(#</span>     );
110 INSERT 0 1
111 <span class="strong">postgres=#</span> UPDATE hint_plan.hints
112 <span class="strong">postgres-#</span>    SET hints = 'IndexScan(t1)'
113 <span class="strong">postgres-#</span>  WHERE id = 1;
114 UPDATE 1
115 <span class="strong">postgres=#</span> DELETE FROM hint_plan.hints
116 <span class="strong">postgres-#</span>  WHERE id = 1;
117 DELETE 1
118 <span class="strong">postgres=#</span>
119 </pre>
120 <p>The hint table is owned by the creator user and having the default previledges at the time of creation.
121 during CREATE EXTENSION. Table hints are prioritized than comment hits.</p>
122
123 <h3 id="hint-group">The types of hints</h3>
124 <p>Hinting phrases are classified into six types based on what kind of object and how they can affect planning. Scaning methods, join methods, joining order, row number correction, parallel query and GUC setting. You will see the lists of hint phrases of each type in <a href="hint_list.html">Hint list</a>.</p>
125
126 <h4>Hints for scan methods </h4>
127 <p>Scan method hints enforce specific scanning method on the target table. pg_hint_plan recognizes the target table by alias names if any. They are 'SeqScan' , 'IndexScan' and so on in this kind of hint.</p>
128 <p>Scan hints are effective on ordinary tables, inheritance tables, UNLOGGED tables, temporary tables and  system catalogs. External(foreign) tables, table functions, VALUES clause, CTEs, views and subquiries are not affected.</p>
129 <pre>
130 <span class="strong">postgres=# /*+</span>
131 <span class="strong">postgres*#     SeqScan(t1)</span>
132 <span class="strong">postgres*#     IndexScan(t2 t2_pkey)</span>
133 <span class="strong">postgres*#  */</span>
134 <span class="strong">postgres-#</span> SELECT * FROM table1 t1 JOIN table table2 t2 ON (t1.key = t2.key);
135 </pre>
136
137
138 <h4>Hints for join methods</h4>
139 <p>Join method hints enforce the join methods of the joins involving specified tables. </p>
140 <p>This can affect on joins only on ordinary tables, inheritance tables, UNLOGGED tables, temporary tables, external (foreign) tables, system catalogs, table functions, VALUES command results and CTEs are allowed to be in the parameter list. But joins on views and sub query are not affected.</p>
141
142 <h4>Hint for joining order</h4>
143 <p> This hint "Leading" enforces the order of join on two or more tables. There are two ways of enforcing. One is enforcing specific order of joining but not restricting direction at each join level. Another enfoces join direction additionaly. Details are seen in the <a href="hint_list.html">hint list</a> table.</p>
144
145 <pre>
146 <span class="strong">postgres=# /*+</span>
147 <span class="strong">postgres*#     NestLoop(t1 t2)</span>
148 <span class="strong">postgres*#     MergeJoin(t1 t2 t3)</span>
149 <span class="strong">postgres*#     Leading(t1 t2 t3)</span>
150 <span class="strong">postgres*#  */</span>
151 <span class="strong">postgres-#</span> SELECT * FROM table1 t1
152 <span class="strong">postgres-#</span>     JOIN table table2 t2 ON (t1.key = t2.key)
153 <span class="strong">postgres-#</span>     JOIN table table3 t3 ON (t2.key = t3.key);
154 </pre>
155
156 <h4>Hint for row number correction</h4>
157 <p>This hint "Rows" corrects row number misestimation of joins that comes from restrictions of the planner. </p>
158
159 <pre>
160 <span class="strong">postgres=# /*+ Rows(a b #10) */</span> SELECT... ; Sets rows of join result to 10
161 <span class="strong">postgres=# /*+ Rows(a b +10) */</span> SELECT... ; Increments row number by 10
162 <span class="strong">postgres=# /*+ Rows(a b -10) */</span> SELECT... ; Subtracts 10 from the row number.
163 <span class="strong">postgres=# /*+ Rows(a b *10) */</span> SELECT... ; Makes the number 10 times larger.
164 </pre>
165
166 <h4>Hint for parallel plan</h4>
167 <p>This hint "Parallel" enforces parallel execution configuration on
168 scans. The third parameter specifies the strength of enfocement. "soft" means that pg_hint_plan only changes max_parallel_worker_per_gather and leave all others to planner. "hard" changes other planner parameters so as to forcibly apply the number. This can affect on ordinary tables, inheritnce parents, unlogged
169 tables and system catalogues. External tables, table functions, values clause, CTEs, views and subqueries are not affected. Internal tables of a view can be specified by its real name/alias as the target object. The following example shows that the query is enforced differently on each table.</p>
170
171 <pre>
172 <span class="strong">postgres=#</span> explain <span class="strong">/*+ Parallel(c1 3 hard) Parallel(c2 5 hard) */</span>
173        SELECT c2.a FROM c1 JOIN c2 ON (c1.a = c2.a);
174                                   QUERY PLAN                                   
175 -------------------------------------------------------------------------------
176  Hash Join  (cost=2.86..11406.38 rows=101 width=4)
177    Hash Cond: (c1.a = c2.a)
178    ->  Gather  (cost=0.00..7652.13 rows=1000101 width=4)
179          <span class="strong">Workers Planned: 3</span>
180          ->  Parallel Seq Scan on <span class="strong">c1</span>  (cost=0.00..7652.13 rows=322613 width=4)
181    ->  Hash  (cost=1.59..1.59 rows=101 width=4)
182          ->  Gather  (cost=0.00..1.59 rows=101 width=4)
183                <span class="strong">Workers Planned: 5</span>
184                ->  Parallel Seq Scan on <span class="strong">c2</span>  (cost=0.00..1.59 rows=59 width=4)
185
186 <span class="strong">postgres=#</span> EXPLAIN <span class="strong">/*+ Parallel(tl 5 hard) */</span> SELECT sum(a) FROM tl;
187                                     QUERY PLAN                                  
188 -----------------------------------------------------------------------------------
189  <span class="strong">Finalize Aggregate</span>  (cost=693.02..693.03 rows=1 width=8)
190    ->  Gather  (cost=693.00..693.01 rows=5 width=8)
191          <span class="strong">Workers Planned: 5</span>
192          ->  <span class="strong">Partial Aggregate</span>  (cost=693.00..693.01 rows=1 width=8)
193                ->  Parallel Seq Scan on tl  (cost=0.00..643.00 rows=20000 width=4)
194 </pre>
195 </dd>
196
197
198 </pre>
199
200
201 <h4>GUC parameters temporarily setting</h4>
202 <p>'Set' hint changes GUC parameters just while planning. GUC parameter shown in <a href="http://www.postgresql.org/docs/current/static/runtime-config-query.html">Query Planning</a> can have the expected effects on planning unless any other hint conflicts with the planner method configuration parameters. The last one among hints on the same GUC parameter makes effect. <a href="#hint-GUC">GUC parameters for pg_hint_plan</a> are also settable by  this hint but it won't work as your expectation. See <a href="#restrictions">Restrictions</a> for details.</p>
203 <pre>
204 postgres=# <span class="strong">/*+ Set(random_page_cost 2.0) */</span>
205 postgres-# SELECT * FROM table1 t1 WHERE key = 'value';
206 ...
207 </pre>
208
209 <h3 id="hint-GUC">GUC parameters for pg_hint_plan</h3>
210 <p>GUC parameters below affect the behavior of pg_hint_planpg_hint_plan.</p>
211 <table>
212 <thead>
213 <tr>
214 <tr><th>Parameter name</th><th>discription</th><th>Default</th></tr>
215 </tr></thead>
216 <tbody>
217 <tr><td>pg_hint_plan.enable_hint</td>
218   <td>True enbles pg_hint_plan.</td><td>on</td></tr>
219 <tr><td>pg_hint_plan.enable_hint_table</td>
220   <td>True enbles hinting by table. true or false.</td><td>off</td></tr>
221 <tr><td>pg_hint_plan.parse_messages</td>
222   <td>Specifies the log level of hint parse error. Valid values are error, warning, notice, info, log, debug<n>.</td><td>INFO</td></tr>
223 <tr><td>pg_hint_plan.debug_print</td>
224   <td>Controls debug print and verbosity. Valid vaiues are off, on, detailed and verbose.</td><td>off</td></tr>
225 <tr><td>pg_hint_plan.message_level</td>
226   <td>Specifies message level of debug print. Valid values are error, warning, notice, info, log, debug<n>.</td><td>INFO</td></tr>
227 </tbody>
228 </table>
229 <h2 id="install">Installation</h2>
230 This section describes the installation steps.
231 <h3 id="build">building binary module</h3>
232 <p>Simply run "make" in the top of the source tree, then "make install" as appropriate user. The PATH environment variable should be set properly for the target PostgreSQL for this process. </p>
233 <pre>
234 $ tar xzvf pg_hint_plan-1.x.x.tar.gz
235 $ cd pg_hint_plan-1.x.x
236 $ make
237 $ su
238 # make install
239 </pre>
240
241 <h3 id="hint-load">Loding pg_hint_plan</h3>
242 <p>Basically pg_hint_plan does not requires CREATE EXTENSION. Simply loading it by LOAD command will activate it and of course you can load it globally by setting shared_preload_libraries in postgresql.conf. Or you might be interested in ALTER USER SET/ALTER DATABASE SET for automatic loading for specific sessions. 
243 <pre>
244 postgres=# LOAD 'pg_hint_plan';
245 LOAD
246 postgres=# </pre></p>
247
248 <p>Do CREATE EXTENSION and SET pg_hint_plan.enable_hint_tables TO on if you are planning to hint tables.</p>
249
250
251 <h2 id="uninstall">Unistallation</h2>
252 <p>"make uninstall" in the top directory of source tree will uninstall the installed files if you installed from the source tree and it is left available. </p>
253
254 <pre>
255 $ cd pg_hint_plan-1.x.x
256 $ su
257 # make uninstall
258 </pre>
259
260 <h2 id="hint_syntax">Details in hinting</h2>
261 <dl>
262 <dt>Syntax and placement</dt>
263 <dd>pg_hint_plan reads hints from only the first block comment and any characters except alphabets, digits, spaces, underscores, commas and parentheses stops parsing immediately. In the following example HashJoin(a b) and SeqScan(a) are parsed as hints but IndexScan(a) and MergeJoin(a b) are not.
264
265 <pre>
266 <span class="strong">postgres=# /*+</span>
267 <span class="strong">postgres*#    HashJoin(a b)</span>
268 <span class="strong">postgres*#    SeqScan(a)</span>
269 <span class="strong">postgres*#  */</span>
270 <span class="strong">postgres-# /*+ IndexScan(a) */</span>
271 <span class="strong">postgres-#</span> EXPLAIN SELECT <span class="strong">/*+ MergeJoin(a b) */</span> *
272 <span class="strong">postgres-#</span>    FROM pgbench_branches b
273 <span class="strong">postgres-#</span>    JOIN pgbench_accounts a ON b.bid = a.bid
274 <span class="strong">postgres-#</span>   ORDER BY a.aid;
275                                       QUERY PLAN
276 ---------------------------------------------------------------------------------------
277  Sort  (cost=31465.84..31715.84 rows=100000 width=197)
278    Sort Key: a.aid
279    ->  <span class="strong">Hash Join</span>  (cost=1.02..4016.02 rows=100000 width=197)
280          Hash Cond: (a.bid = b.bid)
281          ->  <span class="strong">Seq Scan on pgbench_accounts a</span>  (cost=0.00..2640.00 rows=100000 width=97)
282          ->  Hash  (cost=1.01..1.01 rows=1 width=100)
283                ->  Seq Scan on pgbench_branches b  (cost=0.00..1.01 rows=1 width=100)
284 (7 rows)
285
286 postgres=# </pre>
287 </dd>
288
289 <dt>Using with PL/pgSQL</dt>
290 <dd>pg_hint_plan works for queries in PL/pgSQL scripts with some restrictions.
291 <ul>
292  <li>Hints affect only on the following kind of queires.
293  <ul>
294   <li>Queries that returns one row. (SELECT, INSERT, UPDATE and DELETE)</li>
295   <li>Queries that returns multiple rows. (RETURN QUERY)</li>
296   <li>Dynamic SQL statements. (EXECUTE)</li>
297   <li>Cursor open. (OPEN)</li>
298   <li>Loop over result of a query (FOR)</li>
299  </ul>
300
301  <li>A hint comment have to be placed after the first word in a query
302      as the following since preceding comments are not sent as a part
303      of the query.</li>
304 </ul>
305 <pre>
306 postgres=# CREATE FUNCTION hints_func(integer) RETURNS integer AS $$
307 postgres$# DECLARE
308 postgres$#     id  integer;
309 postgres$#     cnt integer;
310 postgres$# BEGIN
311 postgres$#     SELECT <span class="strong">/*+ NoIndexScan(a) */</span> aid
312 postgres$#         INTO id FROM pgbench_accounts a WHERE aid = $1;
313 postgres$#     SELECT <span class="strong">/*+ SeqScan(a) */</span> count(*)
314 postgres$#         INTO cnt FROM pgbench_accounts a;
315 postgres$#     RETURN id + cnt;
316 postgres$# END;
317 postgres$# $$ LANGUAGE plpgsql;
318 </pre>
319 </dd>
320
321 <dt>Letter case in the object names</dt>
322 <dd>Unlike the way PostgreSQL handles object names, pg_hint_plan compares bare object names in hints against the database internal object names in case sensitive way. Therefore an object name TBL in a hint matches only "TBL" in database and does not match any unquoted names like TBL, tbl or Tbl.
323 </dd>
324
325 <dt>Escaping special chacaters in object names</dt>
326 <dd>The objects as the hint parameter should be enclosed by double quotes if they includes parentheses, double quotes and white spaces. The escaping rule is the same as PostgreSQL.
327 </dd>
328
329 <h3>Distinction between multiple occurances of a table</h3>
330 <dd>pg_hint_plan identifies the target object by using aliases if
331 exists. This behavior is usable to point a specific occurance
332 among multiple occurances of one table.
333 <pre>
334 <span class="strong">postgres=# /*+ HashJoin(t1 t1) */</span>
335 <span class="strong">postgres-#</span> EXPLAIN SELECT * FROM s1.t1
336 <span class="strong">postgres-#</span> JOIN public.t1 ON (s1.t1.id=public.t1.id);
337 INFO:  hint syntax error at or near "HashJoin(t1 t1)"
338 <span class="strong">DETAIL:  Relation name "t1" is ambiguous.</span>
339 ...
340 <span class="strong">postgres=# /*+ HashJoin(pt st) */</span>
341 <span class="strong">postgres-#</span> EXPLAIN SELECT * FROM s1.t1 st
342 <span class="strong">postgres-#</span> JOIN public.t1 pt ON (st.id=pt.id);
343                              QUERY PLAN
344 ---------------------------------------------------------------------
345  <span class="strong">Hash Join</span>  (cost=64.00..1112.00 rows=28800 width=8)
346    Hash Cond: (st.id = pt.id)
347    ->  Seq Scan on t1 st  (cost=0.00..34.00 rows=2400 width=4)
348    ->  Hash  (cost=34.00..34.00 rows=2400 width=4)
349          ->  Seq Scan on t1 pt  (cost=0.00..34.00 rows=2400 width=4)
350 </pre>
351 </dd>
352
353 <dt>Underlying tables of views or rules</dt>
354 <dd>Hints are not applicable on views itself, but they can affect the
355 queries within if the object names match the object names in the
356 expanded query on the view. Assigning aliases to the tables in a view
357 enables them to be manipulated from outside the view.
358 <pre>
359 <span class="strong">postgres=#</span> CREATE VIEW v1 AS SELECT * FROM <span class="strong">t2</span>;
360 <span class="strong">postgres=#</span> EXPLAIN <span class="strong">/*+ HashJoin(t1 v1) */</span>
361           SELECT * FROM t1 JOIN v1 ON (c1.a = v1.a);
362                             QUERY PLAN                            
363 ------------------------------------------------------------------
364  Hash Join  (cost=3.27..18181.67 rows=101 width=8)
365    Hash Cond: (t1.a = t2.a)
366    ->  Seq Scan on t1  (cost=0.00..14427.01 rows=1000101 width=4)
367    ->  Hash  (cost=2.01..2.01 rows=101 width=4)
368          ->  Seq Scan on t2  (cost=0.00..2.01 rows=101 width=4)
369 </pre>
370 </dd>
371
372 <dt>Inheritance tables</dt>
373 <dd>Hints can point only the parent of an inheritance tables and the
374 hint affect all the inheritance. Hints simultaneously point directly
375 to children are not in effect.
376 </dd>
377
378 <dt>Hinting on multistatements</dt>
379 <dd>One multistatement can have exactly one hint comment and the hints affects all of the individual statement in the multistatement. Notice that the seemingly multistatement on the interactive interface of psql is internally a sequence of single statements so hints affects only on the statement just following.</dd>
380
381 <dt>VALUES expressions</dt>
382 <dd>VALUES expressions in FROM clause are named as *VALUES* internally
383 so it is hintable if it is the only VALUES in a query. Two or more
384 VALUES expressions in a query seems distinguishable looking its
385 explain result. But in reality it is mere a cosmetic and they are not
386 distinguisable.
387 <pre>
388 <span class="strong">postgres=#</span> <span class="strong">/*+ MergeJoin(*VALUES*_1 *VALUES*) */</span>
389       EXPLAIN SELECT * FROM (VALUES (1, 1), (2, 2)) v (a, b)
390       JOIN (VALUES (1, 5), (2, 8), (3, 4)) w (a, c) ON v.a = w.a;
391 INFO:  pg_hint_plan: hint syntax error at or near "MergeJoin(*VALUES*_1 *VALUES*) "
392 <span class="strong">DETAIL:  Relation name "*VALUES*" is ambiguous.</span>
393                                QUERY PLAN                                
394 -------------------------------------------------------------------------
395  Hash Join  (cost=0.05..0.12 rows=2 width=16)
396    Hash Cond: ("*VALUES*_1".column1 = "*VALUES*".column1)
397    ->  Values Scan on "*VALUES*_1"  (cost=0.00..0.04 rows=3 width=8)
398    ->  Hash  (cost=0.03..0.03 rows=2 width=8)
399          ->  Values Scan on "*VALUES*"  (cost=0.00..0.03 rows=2 width=8)
400 </pre>
401 </dd>
402
403 <h3>Subqueries</h3>
404 <dd>
405 <p>Subqueries in the following context occasionally can be hinted using the
406 name "ANY_subquery".</p>
407 <pre>
408 IN (SELECT ... {<span class="strong">LIMIT | OFFSET</span> ...} ...)
409 = ANY (SELECT ... {<span class="strong">LIMIT | OFFSET</span> ...} ...)
410 = SOME (SELECT ... {<span class="strong">LIMIT | OFFSET</span> ...} ...)
411 </pre>
412 <p>For these syntaxes, planner internally assigns the name to the subquery when planning joins on tables including it, so join hints are applicable on such joins using the implicit name as the following.</p>
413 <pre>
414 <span class="strong">postgres=# /*+HashJoin(a1 ANY_subquery)*/</span>
415 <span class="strong">postgres=#</span> EXPLAIN SELECT *
416 <span class="strong">postgres=#</span>    FROM pgbench_accounts a1
417 <span class="strong">postgres=#</span>   WHERE aid IN (SELECT bid FROM pgbench_accounts a2 LIMIT 10);
418                                          QUERY PLAN
419
420 ---------------------------------------------------------------------------------------------
421  <span class="strong">Hash Semi Join</span>  (cost=0.49..2903.00 rows=1 width=97)
422    Hash Cond: (a1.aid = a2.bid)
423    ->  Seq Scan on pgbench_accounts a1  (cost=0.00..2640.00 rows=100000 width=97)
424    ->  Hash  (cost=0.36..0.36 rows=10 width=4)
425          ->  Limit  (cost=0.00..0.26 rows=10 width=4)
426                ->  Seq Scan on pgbench_accounts a2  (cost=0.00..2640.00 rows=100000 width=4)
427 </pre>
428 </dd>
429
430 <dt>Using IndexOnlyScan hint</dt>
431 <dd>Index scan may unexpectedly performed on another index when the index specifed in IndexOnlyScan hint cannot perform index only scan.</dd>
432
433 <dt>Behavior of NoIndexScan</dt>
434 <dd>NoIndexScan hint involes NoIndexOnlyScan.</dd>
435
436 <dt>Parallel hint and UNION</dt>
437 <dd>A UNION can run in parallel only when all underlying subqueries
438 are parallel-safe. Conversely enforcing parallel on any of
439 the subqueries let a parallel-executable UNION run in
440 parallel. Meanwhile, a parallel hint with zero workers hinhibits a scan
441 from executed in parallel.</dd>
442
443 <dt>Setting pg_hint_plan parameters by Set hints</dt>
444 <dd><p>pg_hint_plan paramters change the behavior of itself so some parameters doesn't work as expected.</p>
445 <ul>
446 <li>Hints to change enable_hint, enable_hint_tables are ignored even though they are reported as "used hints" in debug logs.</li>
447 <li>Setting debug_print and message_level works from midst of the processing of the target query.</li>
448 </ul>
449 </dd>
450 </dl>
451
452 <h2 id="errors">Errors</h2>
453 <p>pg_hint_plan stops parsing on any error and uses hints already parsed on the most cases. Followings are the typical errors.</p>
454 <dl>
455 <dt>Syntax errors </dt>
456 <dd>Any syntactical errors or wrong hint names are reported as an syntax error. These errors are reported in the server log with the message level which specified by pg_hint_plan.message_level if pg_hint_plan.debug_print is on and aboves.</dd>
457 <dt>Object misspecifications</dt>
458 <dd>Object misspecifications results silent ingorance of the hints. This kind of error is reported as "not used hints" in the server log by the same condtion to syntax errors.</dd>
459
460 <dt>Redundant or conflicting hints</dt>
461 <dd>The last hint will be active when redundant hints or hints conflicting with each other. This kind of error is reported as "duplication hints" in the server log by the same condition to syntax errors.</dd>
462
463 <dt>Nested comments</dt>
464 <dd>Hint comment cannot include another block comment within. If pg_hint_plan finds it, differently from other erros, it stops parsing and abandans all hints already parsed. This kind of error is reported in the same manner as other errors. </dd>
465
466 <h2 id="func_limits">Functional limitations</h2>
467 <dt>Influences of some of planner GUC parameters</dt>
468 <dd>The planner does not try to consider joining order for FROM clause entries more than from_collapse_limit. pg_hint_plan cannot affect joining order as expected for the case.</dd>
469
470 <dt>Hints trying to enforce unexecutable plans </dt>
471 <dd>Planner chooses any executable plans when the enforced plan cannot be executed.
472 <ul>
473 <li>FULL OUTER JOIN to use nested loop</li>
474 <li>To use indexes that does not have columns used in quals</li>
475 <li>To do TID scans for queries without ctid conditions</li>
476 </ul>
477 </dd>
478
479 <dt>Queries in ECPG</dt>
480 <dd>ECPG removes comments in queries written as embedded SQLs so hints cannot be passed form those queries. The only exception is that EXECUTE command passes given string unmodifed. Please consider hint tables in the case.</dd>
481
482 <dt>Work with pg_stat_statements</dt>
483 <dd>pg_stat_statements generates a query id ignoring comments. As the result the identical queires with different hints are summerized as the same query.</dd>
484
485 <h2 id="requirement">Requirements</h2>
486 pg_hint_plan11 1.3 requires PostgreSQL 11.
487 <dl>
488 <dt>PostgreSQL versions tested</dt>
489   <dd>Version 11</dd>
490 <dt>OS versions tested</dt>
491   <dd>CentOS 7.5</dd>
492 </dl>
493
494 <h2 id="seealso">See also</h2>
495 <h3 id="postgresql_document">PostgreSQL documents</h3>
496 <a href="http://www.postgresql.org/docs/current/static/sql-explain.html">EXPLAIN</a>
497 <a href="http://www.postgresql.org/docs/current/static/sql-set.html">SET</a>
498 <a href="http://www.postgresql.org/docs/current/static/runtime-config.html">Server Config</a>
499 <a href="http://www.postgresql.org/docs/current/static/parallel-plans.html">Parallel Plans</a>
500 <hr>
501
502 <div class="navigation">
503   <a href="pg_hint_plan.html">pg_hint_plan</a>
504 </div>
505
506 <p class="footer">Copyright (c) 2012-2019, NIPPON TELEGRAPH AND TELEPHONE CORPORATION</p>
507 </body>
508 </html>