Fix build.

This commit is contained in:
Nikolai Kochetov 2020-06-15 21:41:47 +03:00
parent b725df6366
commit 68f8372c12

View File

@ -9,9 +9,9 @@ namespace DB
class IStorage;
using StoragePtr = std::shared_ptr<IStorage>;
class SelectQueryInfo;
struct SelectQueryInfo;
class PrewhereInfo;
struct PrewhereInfo;
/// Reads from storage.
class ReadFromStorageStep : public IQueryPlanStep
@ -28,7 +28,7 @@ public:
size_t max_block_size,
size_t max_streams);
virtual ~ReadFromStorageStep();
~ReadFromStorageStep() override;
String getName() const override { return "ReadFromStorage"; }