Add ILIKE operators ~~*, !~~* to documentation.
authorTom Lane
Fri, 15 Sep 2000 20:20:11 +0000 (20:20 +0000)
committerTom Lane
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 @@
 
 
  
@@ -381,6 +381,16 @@ logical union
    NOT LIKE
    'bruce' !~~ '%al%'
        
+       
+    ~~* 
+   ILIKE
+   'scrappy,marc,hermit' ~~* '%Scrappy%'
+       
+       
+    !~~* 
+   NOT ILIKE
+   'Bruce' !~~* '%al%'
+       
        
     ~ 
    Match (regex), case sensitive