| 6951 | |
| 6952 | |
| 6953 | static inline void copy_field_as_string(Field *to_field, Field *from_field) |
| 6954 | { |
| 6955 | char buff[MAX_FIELD_WIDTH]; |
| 6956 | String tmp_str(buff, sizeof(buff), system_charset_info); |
| 6957 | from_field->val_str(&tmp_str); |
| 6958 | to_field->store(tmp_str.ptr(), tmp_str.length(), system_charset_info); |
| 6959 | } |
| 6960 | |
| 6961 | |
| 6962 | /** |
no test coverage detected