| 2907 | /* routings to adding tables to list of changed in transaction tables */ |
| 2908 | |
| 2909 | inline 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 |