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

Function list_include

sql/sql_class.cc:2909–2918  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2907/* routings to adding tables to list of changed in transaction tables */
2908
2909inline static void list_include(CHANGED_TABLE_LIST** prev,
2910 CHANGED_TABLE_LIST* curr,
2911 CHANGED_TABLE_LIST* new_table)
2912{
2913 if (new_table)
2914 {
2915 *prev = new_table;
2916 (*prev)->next = curr;
2917 }
2918}
2919
2920/* add table to list of changed in transaction tables */
2921

Callers 1

add_changed_tableMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected