| 11331 | } |
| 11332 | |
| 11333 | void st_select_lex_unit::reset_distinct() |
| 11334 | { |
| 11335 | union_distinct= NULL; |
| 11336 | for(SELECT_LEX *sl= first_select()->next_select(); |
| 11337 | sl; |
| 11338 | sl= sl->next_select()) |
| 11339 | { |
| 11340 | if (sl->distinct) |
| 11341 | { |
| 11342 | union_distinct= sl; |
| 11343 | } |
| 11344 | } |
| 11345 | } |
| 11346 | |
| 11347 | |
| 11348 | void LEX::save_values_list_state() |
no test coverage detected