| 864 | int insert(THD *thd, Statement *statement); |
| 865 | |
| 866 | Statement *find_by_name(LEX_STRING *name) |
| 867 | { |
| 868 | Statement *stmt; |
| 869 | stmt= (Statement*)my_hash_search(&names_hash, (uchar*)name->str, |
| 870 | name->length); |
| 871 | return stmt; |
| 872 | } |
| 873 | |
| 874 | Statement *find(ulong id) |
| 875 | { |
nothing calls this directly
no test coverage detected