| 96 | }; |
| 97 | |
| 98 | struct tablevec_entry { |
| 99 | TABLE *table; |
| 100 | size_t refcount; |
| 101 | bool modified; |
| 102 | tablevec_entry() : table(0), refcount(0), modified(false) { } |
| 103 | }; |
| 104 | |
| 105 | struct expr_user_lock : private noncopyable { |
| 106 | expr_user_lock(THD *thd, int timeout) |
nothing calls this directly
no outgoing calls
no test coverage detected