| 671 | */ |
| 672 | |
| 673 | bool Protocol::store(const char *from, const CHARSET_INFO *cs) |
| 674 | { |
| 675 | if (!from) |
| 676 | return store_null(); |
| 677 | uint length= strlen(from); |
| 678 | return store(from, length, cs); |
| 679 | } |
| 680 | |
| 681 | |
| 682 | /** |
nothing calls this directly
no test coverage detected