mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 11:02:08 +00:00
Fix build.
This commit is contained in:
parent
b725df6366
commit
68f8372c12
@ -9,9 +9,9 @@ namespace DB
|
|||||||
class IStorage;
|
class IStorage;
|
||||||
using StoragePtr = std::shared_ptr<IStorage>;
|
using StoragePtr = std::shared_ptr<IStorage>;
|
||||||
|
|
||||||
class SelectQueryInfo;
|
struct SelectQueryInfo;
|
||||||
|
|
||||||
class PrewhereInfo;
|
struct PrewhereInfo;
|
||||||
|
|
||||||
/// Reads from storage.
|
/// Reads from storage.
|
||||||
class ReadFromStorageStep : public IQueryPlanStep
|
class ReadFromStorageStep : public IQueryPlanStep
|
||||||
@ -28,7 +28,7 @@ public:
|
|||||||
size_t max_block_size,
|
size_t max_block_size,
|
||||||
size_t max_streams);
|
size_t max_streams);
|
||||||
|
|
||||||
virtual ~ReadFromStorageStep();
|
~ReadFromStorageStep() override;
|
||||||
|
|
||||||
String getName() const override { return "ReadFromStorage"; }
|
String getName() const override { return "ReadFromStorage"; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user