]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Add ILIKE operators ~~*, !~~* to documentation.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 15 Sep 2000 20:20:11 +0000 (20:20 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 15 Sep 2000 20:20:11 +0000 (20:20 +0000)
doc/src/sgml/oper.sgml

index e51deef0a9dddf317600522c527f04128a8913b1..7f38294530ce15b02a79634ac6a07dfe19859cf4 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/Attic/oper.sgml,v 1.17 2000/08/12 05:15:24 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/Attic/oper.sgml,v 1.18 2000/09/15 20:20:11 tgl Exp $
 -->
 
  <Chapter Id="operators">
@@ -381,6 +381,16 @@ logical union
        <ENTRY>NOT LIKE</ENTRY>
        <ENTRY>'bruce' !~~ '%al%'</ENTRY>
        </ROW>
+       <ROW>
+       <ENTRY> ~~* </ENTRY>
+       <ENTRY>ILIKE</ENTRY>
+       <ENTRY>'scrappy,marc,hermit' ~~* '%Scrappy%'</ENTRY>
+       </ROW>
+       <ROW>
+       <ENTRY> !~~* </ENTRY>
+       <ENTRY>NOT ILIKE</ENTRY>
+       <ENTRY>'Bruce' !~~* '%al%'</ENTRY>
+       </ROW>
        <ROW>
        <ENTRY> ~ </ENTRY>
        <ENTRY>Match (regex), case sensitive</ENTRY>