Tom Lane wrote:
> William White <bwhite@frognet.net> writes:
> > Perhaps document as S &< T iff S "does not extend to the right
> > of/beyond" (the right boundary of) T?
>
> "Does not extend to the right of" works for me, unless someone on the
> list has got a better idea ...
OK, doc patch applied for &< and &>.
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Index: doc/src/sgml/func.sgml
===================================================================
RCS file: /cvsroot/pgsql-server/doc/src/sgml/func.sgml,v
retrieving revision 1.202
diff -c -c -r1.202 func.sgml
*** doc/src/sgml/func.sgml 14 May 2004 21:42:27 -0000 1.202
--- doc/src/sgml/func.sgml 19 May 2004 23:55:21 -0000
***************
*** 5662,5673 ****
</row>
<row>
<entry> <literal>&<</literal> </entry>
! <entry>Overlaps or is left of?</entry>
<entry><literal>box '((0,0),(1,1))' &< box '((0,0),(2,2))'</literal></entry>
</row>
<row>
<entry> <literal>&></literal> </entry>
! <entry>Overlaps or is right of?</entry>
<entry><literal>box '((0,0),(3,3))' &> box '((0,0),(2,2))'</literal></entry>
</row>
<row>
--- 5662,5673 ----
</row>
<row>
<entry> <literal>&<</literal> </entry>
! <entry>Does not extend to the right of?</entry>
<entry><literal>box '((0,0),(1,1))' &< box '((0,0),(2,2))'</literal></entry>
</row>
<row>
<entry> <literal>&></literal> </entry>
! <entry>Does not extend to the left of?</entry>
<entry><literal>box '((0,0),(3,3))' &> box '((0,0),(2,2))'</literal></entry>
</row>
<row>