| 416 | |
| 417 | |
| 418 | bool Item_in_subselect::test_limit(st_select_lex_unit *unit_arg) |
| 419 | { |
| 420 | if (unit_arg->fake_select_lex && |
| 421 | unit_arg->fake_select_lex->test_limit()) |
| 422 | return(1); |
| 423 | |
| 424 | SELECT_LEX *sl= unit_arg->first_select(); |
| 425 | for (; sl; sl= sl->next_select()) |
| 426 | { |
| 427 | if (sl->test_limit()) |
| 428 | return(1); |
| 429 | } |
| 430 | return(0); |
| 431 | } |
| 432 | |
| 433 | Item_in_subselect::Item_in_subselect(Item * left_exp, |
| 434 | st_select_lex *select_lex): |
nothing calls this directly
no test coverage detected