summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_regexp_pcre.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-8102 REGEXP function fails to match hex values when expression is ↵Alexander Barkov2015-05-141-0/+24
| | | | | | | stored as a variable We don't fix the bug itself, we just make regex functions display errors returned from pcre_exec() as MariaDB warnings.
* MDEV-6965 non-captured group \2 in regexp_replaceAlexander Barkov2014-11-101-0/+5
|
* MDEV-6027 RLIKE: "." no longer matching new line Alexander Barkov2014-04-231-0/+48
| | | | | | Added a new system variable: default_regex_flags='DOTALL,DUPNAMES,EXTENDED,EXTRA,MULTILINE,UNGREEDY'
* MDEV-4425 Regexp enhancementsAlexander Barkov2013-10-081-0/+4
| | | | | | | | | | | | | Do not pass PCRE_UCP flag for binary data. This makes bytes 0x80..FF not to belong to generic character classes \d (digit) and \w (word character). SELECT 0xFF RLIKE '\\w'; -> 0 Note, this change does not affect non-binary data, which is still examined with the PCRE_UCP flag by default.
* MDEV-4425 Regexp enhancementsAlexander Barkov2013-10-031-0/+7
| | | | | | | Adding tests with 0x00 characters from Bug#70470 REGEXP fails to find matches after NUL character
* MDEV-4425 Regexp enhancementsAlexander Barkov2013-10-031-0/+9
| | | | | | Adding more tests for case sensitivity, with various collation and (?i) flags combinations.
* MDEV-4425 REGEXP enhancementsAlexander Barkov2013-09-261-0/+331