mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
16 lines
302 B
C++
16 lines
302 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <Storages/ColumnsDescription.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
/// Parses a common argument for table functions such as table structure given in string
|
|
ColumnsDescription parseColumnsListFromString(const std::string & structure, const Context & context);
|
|
|
|
}
|