| 5835 | void set_query_and_id(char *query_arg, uint32 query_length_arg, |
| 5836 | CHARSET_INFO *cs, query_id_t new_query_id); |
| 5837 | void set_query_id(query_id_t new_query_id) |
| 5838 | { |
| 5839 | query_id= new_query_id; |
| 5840 | #ifdef WITH_WSREP |
| 5841 | if (WSREP_NNULL(this)) |
| 5842 | { |
| 5843 | set_wsrep_next_trx_id(query_id); |
| 5844 | WSREP_DEBUG("assigned new next trx id: %" PRIu64, wsrep_next_trx_id()); |
| 5845 | } |
| 5846 | #endif /* WITH_WSREP */ |
| 5847 | } |
| 5848 | void set_open_tables(TABLE *open_tables_arg) |
| 5849 | { |
| 5850 | mysql_mutex_lock(&LOCK_thd_data); |
no outgoing calls
no test coverage detected