From 967496b1de7ae4cbb3b871788cad7f9b9a1e7d0b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 15 Sep 2000 20:20:11 +0000 Subject: [PATCH] Add ILIKE operators ~~*, !~~* to documentation. --- doc/src/sgml/oper.sgml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/src/sgml/oper.sgml b/doc/src/sgml/oper.sgml index add39e4fee..bf21e5f785 100644 --- a/doc/src/sgml/oper.sgml +++ b/doc/src/sgml/oper.sgml @@ -381,6 +381,16 @@ logical union NOT LIKE 'bruce' !~~ '%al%' + + ~~* + ILIKE + 'scrappy,marc,hermit' ~~* '%Scrappy%' + + + !~~* + NOT ILIKE + 'Bruce' !~~* '%al%' + ~ Match (regex), case sensitive -- 2.39.5