| 1658 | } |
| 1659 | |
| 1660 | void Item_func_encode::crypto_transform(String *res) |
| 1661 | { |
| 1662 | sql_crypt.encode((char*) res->ptr(),res->length()); |
| 1663 | res->set_charset(&my_charset_bin); |
| 1664 | } |
| 1665 | |
| 1666 | void Item_func_decode::crypto_transform(String *res) |
| 1667 | { |
nothing calls this directly
no test coverage detected