| 87 | } |
| 88 | |
| 89 | ColumnsWithTypeAndName createBlockWithNestedColumns(const ColumnsWithTypeAndName & columns) |
| 90 | { |
| 91 | ColumnsWithTypeAndName res; |
| 92 | for (const auto & col : columns) |
| 93 | res.emplace_back(columnGetNested(col)); |
| 94 | |
| 95 | return res; |
| 96 | } |
| 97 | |
| 98 | void validateArgumentType(const IFunction & func, const DataTypes & arguments, |
| 99 | size_t argument_index, bool (* validator_func)(const IDataType &), |
no test coverage detected