Skip to content

Commit 1fe2b77

Browse files
committed
Add spaces to manual page.
1 parent f03f246 commit 1fe2b77

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

doc/src/sgml/ref/create_operator.sgml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.16 2000/09/12 20:52:08 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.17 2000/10/10 04:42:43 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -248,13 +248,13 @@ CREATE
248248
Hence, the query optimizer could freely convert:
249249

250250
<programlisting>
251-
box '((0,0),(1,1))' &gt;&gt;&gt; MYBOXES.description
251+
box '((0,0), (1,1))' &gt;&gt;&gt; MYBOXES.description
252252
</programlisting>
253253

254254
to
255255

256256
<programlisting>
257-
MYBOXES.description &lt;&lt;&lt; box '((0,0),(1,1))'
257+
MYBOXES.description &lt;&lt;&lt; box '((0,0), (1,1))'
258258
</programlisting>
259259
</para>
260260
<para>
@@ -269,11 +269,11 @@ MYBOXES.description &lt;&lt;&lt; box '((0,0),(1,1))'
269269
equal, !==.
270270
The negator link allows the query optimizer to simplify
271271
<programlisting>
272-
NOT MYBOXES.description === box '((0,0),(1,1))'
272+
NOT MYBOXES.description === box '((0,0), (1,1))'
273273
</programlisting>
274274
to
275275
<programlisting>
276-
MYBOXES.description !== box '((0,0),(1,1))'
276+
MYBOXES.description !== box '((0,0), (1,1))'
277277
</programlisting>
278278
</para>
279279
<para>
@@ -331,7 +331,7 @@ MYBOXES.description !== box '((0,0),(1,1))'
331331
The RESTRICT and JOIN options assist the query optimizer in estimating
332332
result sizes. If a clause of the form:
333333
<programlisting>
334-
MYBOXES.description &lt;&lt;&lt; box '((0,0),(1,1))'
334+
MYBOXES.description &lt;&lt;&lt; box '((0,0), (1,1))'
335335
</programlisting>
336336
is present in the qualification,
337337
then <productname>Postgres</productname> may have to
@@ -342,7 +342,7 @@ MYBOXES.description &lt;&lt;&lt; box '((0,0),(1,1))'
342342
<command>CREATE FUNCTION</command>) which accepts arguments of the correct
343343
data types and returns a floating point number. The
344344
query optimizer simply calls this function, passing the
345-
parameter <literal>((0,0),(1,1))</literal> and multiplies the result by the relation
345+
parameter <literal>((0,0), (1,1))</literal> and multiplies the result by the relation
346346
size to get the expected number of instances.
347347
</para>
348348
<para>
@@ -356,11 +356,11 @@ MYBOXES.description &lt;&lt;&lt; box '((0,0),(1,1))'
356356
<para>
357357
The difference between the function
358358
<programlisting>
359-
my_procedure_1 (MYBOXES.description, box '((0,0),(1,1))')
359+
my_procedure_1 (MYBOXES.description, box '((0,0), (1,1))')
360360
</programlisting>
361361
and the operator
362362
<programlisting>
363-
MYBOXES.description === box '((0,0),(1,1))'
363+
MYBOXES.description === box '((0,0), (1,1))'
364364
</programlisting>
365365
is that <productname>Postgres</productname>
366366
attempts to optimize operators and can

0 commit comments

Comments
 (0)