1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-21 05:21:08 +03:00

doc: Spell checking

This commit is contained in:
Peter Eisentraut
2014-07-16 22:20:15 -04:00
parent 1264ef31a3
commit aa68872561
27 changed files with 87 additions and 87 deletions

View File

@@ -442,7 +442,7 @@ WHERE t1.unique1 < 10 AND t2.unique2 < 10 AND t1.hundred < t2.hundred;
<para>
Notice that here the planner has chosen to <quote>materialize</> the inner
relation of the join, by putting a Materialize plan node atop it. This
means that the <literal>t2</> indexscan will be done just once, even
means that the <literal>t2</> index scan will be done just once, even
though the nested-loop join node needs to read that data ten times, once
for each row from the outer relation. The Materialize node saves the data
in memory as it's read, and then returns the data from memory on each