| 2920 | /* add table to list of changed in transaction tables */ |
| 2921 | |
| 2922 | void THD::add_changed_table(TABLE *table) |
| 2923 | { |
| 2924 | DBUG_ENTER("THD::add_changed_table(table)"); |
| 2925 | |
| 2926 | DBUG_ASSERT(in_multi_stmt_transaction_mode() && |
| 2927 | table->file->has_transactions()); |
| 2928 | add_changed_table(table->s->table_cache_key.str, |
| 2929 | (long) table->s->table_cache_key.length); |
| 2930 | DBUG_VOID_RETURN; |
| 2931 | } |
| 2932 | |
| 2933 | |
| 2934 | void THD::add_changed_table(const char *key, size_t key_length) |
no test coverage detected