diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-10-01 00:30:58 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-10-01 00:30:58 +0400 |
commit | 6857cb57fe7090f131b272f31485b7a478a0b324 (patch) | |
tree | 44cd80409ab7d173b7263c55d3f37ddc8b6914ab /sql/item.h | |
parent | aa582dedcbd22182e06355b94d1de4fc62f71910 (diff) | |
download | mariadb-git-6857cb57fe7090f131b272f31485b7a478a0b324.tar.gz |
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).
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index 7662d358b42..bb341959103 100644 --- a/sql/item.h +++ b/sql/item.h @@ -1712,7 +1712,8 @@ public: bool check_type_can_return_int(const char *opname) const; bool check_type_can_return_decimal(const char *opname) const; bool check_type_can_return_real(const char *opname) const; - bool check_type_can_return_str_ascii(const char *opname) const; + bool check_type_can_return_str(const char *opname) const; + bool check_type_can_return_text(const char *opname) const; bool check_type_can_return_date(const char *opname) const; bool check_type_can_return_time(const char *opname) const; // It is not row => null inside is impossible |