mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
34 lines
750 B
C++
34 lines
750 B
C++
#pragma once
|
|
|
|
#include <QueryPipeline/Pipe.h>
|
|
#include <Storages/IStorage.h>
|
|
|
|
namespace DB
|
|
{
|
|
/** Internal temporary storage for table function input(...)
|
|
*/
|
|
|
|
class StorageInput final : public IStorage
|
|
{
|
|
public:
|
|
StorageInput(const StorageID & table_id, const ColumnsDescription & columns_);
|
|
|
|
String getName() const override { return "Input"; }
|
|
|
|
/// A table will read from this stream.
|
|
void setPipe(Pipe pipe_);
|
|
|
|
Pipe read(
|
|
const Names & column_names,
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
size_t num_streams) override;
|
|
|
|
private:
|
|
Pipe pipe;
|
|
};
|
|
}
|