| 219 | } |
| 220 | |
| 221 | Names getAllNestedColumnsForTable(const Block & block, const std::string & table_name) |
| 222 | { |
| 223 | Names names; |
| 224 | for (const auto & name: block.getNames()) |
| 225 | { |
| 226 | if (extractTableName(name) == table_name) |
| 227 | names.push_back(name); |
| 228 | } |
| 229 | return names; |
| 230 | } |
| 231 | |
| 232 | std::unordered_set<String> getAllTableNames(const Block & block, bool to_lower_case) |
| 233 | { |
no test coverage detected