Skip to content

Commit e930a9a

Browse files
committed
Add ILIKE operators ~~*, !~~* to documentation.
1 parent 8d48d89 commit e930a9a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

doc/src/sgml/oper.sgml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/oper.sgml,v 1.17 2000/08/12 05:15:24 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/oper.sgml,v 1.18 2000/09/15 20:20:11 tgl Exp $
33
-->
44

55
<Chapter Id="operators">
@@ -381,6 +381,16 @@ logical union
381381
<ENTRY>NOT LIKE</ENTRY>
382382
<ENTRY>'bruce' !~~ '%al%'</ENTRY>
383383
</ROW>
384+
<ROW>
385+
<ENTRY> ~~* </ENTRY>
386+
<ENTRY>ILIKE</ENTRY>
387+
<ENTRY>'scrappy,marc,hermit' ~~* '%Scrappy%'</ENTRY>
388+
</ROW>
389+
<ROW>
390+
<ENTRY> !~~* </ENTRY>
391+
<ENTRY>NOT ILIKE</ENTRY>
392+
<ENTRY>'Bruce' !~~* '%al%'</ENTRY>
393+
</ROW>
384394
<ROW>
385395
<ENTRY> ~ </ENTRY>
386396
<ENTRY>Match (regex), case sensitive</ENTRY>

0 commit comments

Comments
 (0)