mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
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);
|
|
|
|
}
|