2020-11-20 22:47:04 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "config_core.h"
|
|
|
|
|
|
|
|
#if USE_LIBPQXX
|
2022-04-19 20:47:29 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
2020-11-20 22:47:04 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Storages/IStorage.h>
|
2021-05-08 14:54:44 +00:00
|
|
|
#include <Core/PostgreSQL/PoolWithFailover.h>
|
2021-09-01 17:59:11 +00:00
|
|
|
#include <Storages/ExternalDataSourceConfiguration.h>
|
2020-11-20 22:47:04 +00:00
|
|
|
|
2021-09-28 22:17:26 +00:00
|
|
|
namespace Poco
|
|
|
|
{
|
|
|
|
class Logger;
|
|
|
|
}
|
2021-01-11 10:23:44 +00:00
|
|
|
|
2020-11-20 22:47:04 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2020-11-25 21:06:33 +00:00
|
|
|
|
2022-04-19 20:47:29 +00:00
|
|
|
class StoragePostgreSQL final : public IStorage, boost::noncopyable
|
2020-11-20 22:47:04 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
StoragePostgreSQL(
|
|
|
|
const StorageID & table_id_,
|
2021-05-07 11:18:49 +00:00
|
|
|
postgres::PoolWithFailoverPtr pool_,
|
2021-03-15 14:37:31 +00:00
|
|
|
const String & remote_table_name_,
|
2020-11-20 22:47:04 +00:00
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const ConstraintsDescription & constraints_,
|
2021-04-23 12:18:23 +00:00
|
|
|
const String & comment,
|
2021-08-24 12:29:42 +00:00
|
|
|
const String & remote_table_schema_ = "",
|
|
|
|
const String & on_conflict = "");
|
2020-11-20 22:47:04 +00:00
|
|
|
|
|
|
|
String getName() const override { return "PostgreSQL"; }
|
|
|
|
|
|
|
|
Pipe read(
|
|
|
|
const Names & column_names,
|
2021-07-09 03:15:41 +00:00
|
|
|
const StorageSnapshotPtr & storage_snapshot,
|
2020-11-20 22:47:04 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-11-20 22:47:04 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
|
|
|
|
2021-07-23 19:33:59 +00:00
|
|
|
SinkToStoragePtr write(const ASTPtr & query, const StorageMetadataPtr & /*metadata_snapshot*/, ContextPtr context) override;
|
2020-11-25 14:52:11 +00:00
|
|
|
|
2021-09-01 17:59:11 +00:00
|
|
|
static StoragePostgreSQLConfiguration getConfiguration(ASTs engine_args, ContextPtr context);
|
|
|
|
|
2020-11-20 22:47:04 +00:00
|
|
|
private:
|
2020-11-25 14:52:11 +00:00
|
|
|
friend class PostgreSQLBlockOutputStream;
|
|
|
|
|
2020-11-20 22:47:04 +00:00
|
|
|
String remote_table_name;
|
2021-03-14 10:35:10 +00:00
|
|
|
String remote_table_schema;
|
2021-08-24 12:29:42 +00:00
|
|
|
String on_conflict;
|
2021-03-27 20:14:02 +00:00
|
|
|
postgres::PoolWithFailoverPtr pool;
|
2021-09-28 22:17:26 +00:00
|
|
|
|
|
|
|
Poco::Logger * log;
|
2020-11-25 14:52:11 +00:00
|
|
|
};
|
2020-12-21 19:20:56 +00:00
|
|
|
|
2020-11-20 22:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|