| 33849 | */ |
| 33850 | |
| 33851 | enum_nested_loop_state |
| 33852 | AGGR_OP::put_record(bool end_of_records) |
| 33853 | { |
| 33854 | // Lasy tmp table creation/initialization |
| 33855 | if (!join_tab->table->file->inited) |
| 33856 | if (prepare_tmp_table()) |
| 33857 | return NESTED_LOOP_ERROR; |
| 33858 | enum_nested_loop_state rc= (*write_func)(join_tab->join, join_tab, |
| 33859 | end_of_records); |
| 33860 | return rc; |
| 33861 | } |
| 33862 | |
| 33863 | |
| 33864 | /** |
no outgoing calls
no test coverage detected