diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-09-26 18:02:17 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-09-26 18:02:17 +0400 |
commit | 285e7aa179a6081531be3274772b89e8989fd107 (patch) | |
tree | 71836ea6e49f48fff6e957bcef38628e7b979001 /pcre/testdata/testinput25 | |
parent | 9d83468e78ba23f024ce3c11443913ad75cf1ea5 (diff) | |
download | mariadb-git-285e7aa179a6081531be3274772b89e8989fd107.tar.gz |
MDEV-4425 REGEXP enhancements
Diffstat (limited to 'pcre/testdata/testinput25')
-rw-r--r-- | pcre/testdata/testinput25 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pcre/testdata/testinput25 b/pcre/testdata/testinput25 new file mode 100644 index 00000000000..2d65fd7b03e --- /dev/null +++ b/pcre/testdata/testinput25 @@ -0,0 +1,32 @@ +/-- Tests for the 32-bit library only */ + +/-- Check maximum character size --/ + +/\x{110000}/ + +/\x{7fffffff}/ + +/\x{80000000}/ + +/\x{ffffffff}/ + +/\x{7fffffff}\x{7fffffff}/I + +/\x{80000000}\x{80000000}/I + +/\x{ffffffff}\x{ffffffff}/I + +/-- Non-UTF characters --/ + +/\C{2,3}/ + \x{400000}\x{400001}\x{400002}\x{400003} + +/\x{400000}\x{800000}/iDZ + +/-- Check character ranges --/ + +/[\H]/BZSI + +/[\V]/BZSI + +/-- End of testinput25 --/ |