Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
Description
Move this code:
/**
|
Check whether this parameter data type is compatible with long data.
|
Used to detect whether a long data stream has been supplied to a
|
incompatible data type.
|
*/
|
inline bool is_param_long_data_type(Item_param *param)
|
{
|
return ((param->field_type() >= MYSQL_TYPE_TINY_BLOB) &&
|
(param->field_type() <= MYSQL_TYPE_STRING));
|
}
|
into a new virtual method in Type_handler.
Attachments
Issue Links
- blocks
-
MDEV-4912 Data type plugin API version 1
- Closed