Skip to content

Commit

Permalink
Suppression des espaces blancs
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Apr 15, 2020
1 parent 7646e77 commit 394a42c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions postgresql/perform.xml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ EXPLAIN UPDATE parent SET f2 = f2 + 1 WHERE f1 = 101;
</para>

<para>
Dans certains cas, le planificateur préfèrera un plan <quote>simple</quote>
Dans certains cas, le planificateur préfèrera un plan <quote>simple</quote>
d'index&nbsp;:

<screen>
Expand Down Expand Up @@ -942,7 +942,7 @@ EXPLAIN ANALYZE SELECT * FROM tenk1 WHERE unique1 &lt; 100 AND unique2 &gt; 9000
</para>

<para>
Habituellement, la sortie d'<command>EXPLAIN</command> affichera
Habituellement, la sortie d'<command>EXPLAIN</command> affichera
chaque nœud de plan généré par le planificateur de requêtes. Néanmoins, il
existe des cas où l'exécuteur peut déterminer que certains nœuds n'ont pas
besoin d'être exécutés, car ils ne produisent aucune ligne. (Actuellement,
Expand Down Expand Up @@ -1234,7 +1234,7 @@ ANALYZE zipcodes;
SELECT stxname, stxkeys, stxddependencies
FROM pg_statistic_ext join pg_statistic_ext_data on (oid = stxoid)
WHERE stxname = 'stts';
stxname | stxkeys | stxddependencies
stxname | stxkeys | stxddependencies
---------+---------+------------------------------------------
stts | 1 5 | {"1 => 5": 1.000000, "5 => 1": 0.423130}
(1 row)
Expand Down Expand Up @@ -1390,7 +1390,7 @@ ANALYZE zipcodes;
SELECT m.* FROM pg_statistic_ext join pg_statistic_ext_data on (oid = stxoid),
pg_mcv_list_items(stxdmcv) m WHERE stxname = 'stts3';

index | values | nulls | frequency | base_frequency
index | values | nulls | frequency | base_frequency
-------+------------------------+-------+-----------+----------------
0 | {Washington, DC} | {f,f} | 0.003467 | 2.7e-05
1 | {Apo, AE} | {f,f} | 0.003067 | 1.9e-05
Expand Down

0 comments on commit 394a42c

Please sign in to comment.