| 171 | ****************************************************************************/ |
| 172 | |
| 173 | Materialized_cursor::Materialized_cursor(select_result *result_arg, |
| 174 | TABLE *table_arg) |
| 175 | :Server_side_cursor(&table_arg->mem_root, result_arg), |
| 176 | table(table_arg), |
| 177 | fetch_limit(0), |
| 178 | fetch_count(0), |
| 179 | is_rnd_inited(0) |
| 180 | { |
| 181 | fake_unit.init_query(); |
| 182 | fake_unit.thd= table->in_use; |
| 183 | } |
| 184 | |
| 185 | |
| 186 | /** |
nothing calls this directly
no test coverage detected