ClickHouse/programs/odbc-bridge/ODBCSource.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <string>
#include <Core/Block.h>
2021-10-11 16:11:50 +00:00
#include <Processors/ISource.h>
2019-02-15 11:46:07 +00:00
#include <Core/ExternalResultDescription.h>
#include "ODBCPooledConnectionFactory.h"
namespace DB
{
/// Allows processing results of a query to ODBC source as a sequence of Blocks, simplifies chaining
2021-10-11 16:11:50 +00:00
class ODBCSource final : public ISource
{
public:
2021-10-11 16:11:50 +00:00
ODBCSource(nanodbc::ConnectionHolderPtr connection, const std::string & query_str, const Block & sample_block, UInt64 max_block_size_);
String getName() const override { return "ODBC"; }
private:
2021-03-22 11:40:29 +00:00
using QueryResult = std::shared_ptr<nanodbc::result>;
using ValueType = ExternalResultDescription::ValueType;
2021-10-11 16:11:50 +00:00
Chunk generate() override;
2021-10-11 16:11:50 +00:00
static void insertValue(IColumn & column, DataTypePtr data_type, ValueType type, nanodbc::result & row, size_t idx);
2021-03-22 11:40:29 +00:00
static void insertDefaultValue(IColumn & column, const IColumn & sample_column)
{
column.insertFrom(sample_column, 0);
}
2024-01-23 17:04:50 +00:00
LoggerPtr log;
2019-02-10 16:55:12 +00:00
const UInt64 max_block_size;
ExternalResultDescription description;
2021-03-22 11:40:29 +00:00
nanodbc::result result;
String query;
2021-10-11 16:11:50 +00:00
bool is_finished = false;
};
}