summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <arjen@fred.bitbike.com>2002-04-24 13:39:59 +1000
committerunknown <arjen@fred.bitbike.com>2002-04-24 13:39:59 +1000
commit251857fdc2820ae1105b765b4eb2d89b81568d1c (patch)
tree5cb0f7aae77b21cbb924ccfd50c14257b8f3165c /Docs
parent24f60591ef82bd38a37d0bf56ea039742d3c7231 (diff)
downloadmariadb-git-251857fdc2820ae1105b765b4eb2d89b81568d1c.tar.gz
Removed obsolete bit of text about case-sensitive regular expressions.
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi6
1 files changed, 0 insertions, 6 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index bce9a492145..40324ba22e2 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -12762,12 +12762,6 @@ example, @samp{x*} matches any number of @samp{x} characters,
number of anything.
@item
-Regular expressions are case sensitive, but you can use a character class to
-match both lettercases if you wish. For example, @samp{[aA]} matches
-lowercase or uppercase @samp{a} and @samp{[a-zA-Z]} matches any letter in
-either case.
-
-@item
The pattern matches if it occurs anywhere in the value being tested.
(SQL patterns match only if they match the entire value.)