Assign a new value to thd->query and thd->query_id and mysys_var. Protected with LOCK_thd_data mutex. */
| 5814 | Protected with LOCK_thd_data mutex. |
| 5815 | */ |
| 5816 | void set_query(char *query_arg, size_t query_length_arg, |
| 5817 | CHARSET_INFO *cs_arg) |
| 5818 | { |
| 5819 | set_query(CSET_STRING(query_arg, query_length_arg, cs_arg)); |
| 5820 | } |
| 5821 | void set_query(char *query_arg, size_t query_length_arg) /*Mutex protected*/ |
| 5822 | { |
| 5823 | set_query(CSET_STRING(query_arg, query_length_arg, charset())); |
nothing calls this directly
no test coverage detected