//////////////////////////////////////////////////////////////////////////
| 31027 | |
| 31028 | /////////////////////////////////////////////////////////////////////////////// |
| 31029 | int append_possible_keys(MEM_ROOT *alloc, String_list &list, TABLE *table, |
| 31030 | key_map possible_keys) |
| 31031 | { |
| 31032 | uint j; |
| 31033 | for (j=0 ; j < table->s->keys ; j++) |
| 31034 | { |
| 31035 | if (possible_keys.is_set(j)) |
| 31036 | if (!(list.append_str(alloc, table->key_info[j].name.str))) |
| 31037 | return 1; |
| 31038 | } |
| 31039 | return 0; |
| 31040 | } |
| 31041 | |
| 31042 | |
| 31043 | bool JOIN_TAB::save_explain_data(Explain_table_access *eta, |
no test coverage detected