]> granicus.if.org Git - postgis/commitdiff
Fixed literal && inside the text, replaced with &
authorPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 4 Feb 2005 17:08:25 +0000 (17:08 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 4 Feb 2005 17:08:25 +0000 (17:08 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1366 b70326c6-7e19-0410-871a-916f4a2858ee

doc/postgis.xml

index ee24668076edef82b967550ab529693f4eaa084a..90c160e77d8f77beeae24fca217eee0da33aaa8d 100644 (file)
@@ -2428,12 +2428,12 @@ TOAST table used 8225 pages.
 </para>
 
 <para>
-Now issue a query where you use the geometry operator && to search for a
+Now issue a query where you use the geometry operator &amp;&amp; to search for a
 bounding box that matches only very few of those rows. Now the query
 optimizer sees that the table has only 3 pages and 80 rows. He estimates
 that a sequential scan on such a small table is much faster than using
 an index. And so he decides to ignore the GIST index. Usually, this
-estimation is correct. But in our case, the && operator has to fetch
+estimation is correct. But in our case, the &amp;&amp; operator has to fetch
 every geometry from disk to compare the bounding boxes, thus reading all
 TOAST pages, too.
 </para>
@@ -2478,12 +2478,12 @@ UPDATE mytable set bbox = Envelope(Force_2d(the_geom));
 </programlisting>
 
 <para>
-Now change your query to use the && operator against bbox instead of
+Now change your query to use the &amp;&amp; operator against bbox instead of
 geom_column, like:
 </para>
 
 <programlisting>
-SELECT geom_column FROM mytable WHERE bbox && SetSrid('BOX3D(0 0,1 1)'::box3d,4326);
+SELECT geom_column FROM mytable WHERE bbox &amp;&amp; SetSrid('BOX3D(0 0,1 1)'::box3d,4326);
 </programlisting>
 
 <para>