1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-13967 Parameter data type control for Item_long_func

- Implementing stricter data type control for Item_long_func descendants
- Cleanup: renaming Type_handler::can_return_str_ascii() to can_return_text()
  (a better name).
This commit is contained in:
Alexander Barkov
2017-10-01 00:30:58 +04:00
parent aa582dedcb
commit 6857cb57fe
18 changed files with 660 additions and 39 deletions

View File

@ -157,3 +157,9 @@ SELECT ' ' REGEXP '[[:space:]]';
SELECT '\t' REGEXP '[[:space:]]';
'\t' REGEXP '[[:space:]]'
1
#
# MDEV-13967 Parameter data type control for Item_long_func
#
SELECT REGEXP_INSTR('111222333',2);
REGEXP_INSTR('111222333',2)
4