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 $
33Postgres 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))' >>> MYBOXES.description
251+ box '((0,0), (1,1))' >>> MYBOXES.description
252252 </programlisting>
253253
254254 to
255255
256256 <programlisting>
257- MYBOXES.description <<< box '((0,0),(1,1))'
257+ MYBOXES.description <<< box '((0,0), (1,1))'
258258 </programlisting>
259259 </para>
260260 <para>
@@ -269,11 +269,11 @@ MYBOXES.description <<< 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 <<< box '((0,0),(1,1))'
334+ MYBOXES.description <<< 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 <<< 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 <<< 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