ClickHouse/dbms/src/TableFunctions/parseColumnsListForTableFunction.h

12 lines
258 B
C++
Raw Normal View History

#pragma once
#include <Core/Block.h>
namespace DB
{
2019-07-31 15:58:28 +00:00
/// Parses a common argument for table functions such as table structure given in string
2019-07-31 15:43:01 +00:00
void parseColumnsListFromString(const std::string & structure, Block & sample_block, const Context & context);
}