mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
20 lines
302 B
C++
20 lines
302 B
C++
#pragma once
|
||
|
||
#include <DB/TableFunctions/ITableFunction.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
/** Позволяет получить табличную функцию по ее имени.
|
||
*/
|
||
class TableFunctionFactory
|
||
{
|
||
public:
|
||
TableFunctionPtr get(
|
||
const String & name,
|
||
const Context & context) const;
|
||
};
|
||
|
||
}
|