ClickHouse/dbms/src/TableFunctions/TableFunctionRemote.h

33 lines
1016 B
C++
Raw Normal View History

#pragma once
#include <TableFunctions/ITableFunction.h>
namespace DB
{
/* remote ('address', db, table) - creates a temporary StorageDistributed.
2017-04-16 15:00:33 +00:00
* To get the table structure, a DESC TABLE request is made to the remote server.
* For example
* SELECT count() FROM remote('example01-01-1', merge, hits) - go to `example01-01-1`, in the merge database, the hits table.
2017-08-08 20:58:18 +00:00
* An expression that generates a set of shards and replicas can also be specified as the host name - see below.
* Also, there is a cluster version of the function: cluster('existing_cluster_name', 'db', 'table')
*/
class TableFunctionRemote : public ITableFunction
{
public:
2019-01-17 17:55:44 +00:00
explicit TableFunctionRemote(const std::string & name_ = "remote", bool secure = false);
std::string getName() const override { return name; }
private:
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context) const override;
std::string name;
bool is_cluster_function;
std::string help_message;
2019-01-17 17:55:44 +00:00
bool secure;
};
}