MCPcopy Create free account
hub / github.com/MariaDB/server / add_changed_table

Method add_changed_table

sql/sql_class.cc:2922–2931  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2920/* add table to list of changed in transaction tables */
2921
2922void 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
2934void THD::add_changed_table(const char *key, size_t key_length)

Callers 1

invalidateMethod · 0.80

Calls 2

list_includeFunction · 0.85
has_transactionsMethod · 0.80

Tested by

no test coverage detected