1 | #pragma once |
---|---|
2 | |
3 | #include <string> |
4 | #include <Storages/ColumnsDescription.h> |
5 | |
6 | |
7 | namespace DB |
8 | { |
9 | |
10 | class Context; |
11 | |
12 | /// Parses a common argument for table functions such as table structure given in string |
13 | ColumnsDescription parseColumnsListFromString(const std::string & structure, const Context & context); |
14 | |
15 | } |
16 |