| 232 | } |
| 233 | |
| 234 | Chunk CreatingSetsTransform::generate() |
| 235 | { |
| 236 | if (set_and_key->set && !set_from_cache) |
| 237 | { |
| 238 | set_and_key->set->finishInsert(); |
| 239 | if (promise_to_build) |
| 240 | { |
| 241 | promise_to_build->set_value(set_and_key->set); |
| 242 | promise_to_build.reset(); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | if (table_out.initialized()) |
| 247 | { |
| 248 | executor->finish(); |
| 249 | executor.reset(); |
| 250 | table_out.reset(); |
| 251 | } |
| 252 | |
| 253 | finishSubquery(); |
| 254 | return {}; |
| 255 | } |
| 256 | |
| 257 | } |
nothing calls this directly
no test coverage detected