Fix virtual destructor

This commit is contained in:
alesapin 2018-09-06 21:44:38 +03:00
parent 580683310b
commit f751f72e1a

View File

@ -131,7 +131,7 @@ protected:
Context & context_,
size_t num_shards_, const Thresholds & min_thresholds_, const Thresholds & max_thresholds_,
const String & destination_database_, const String & destination_table_, bool allow_materialized_);
~StorageBuffer();
~StorageBuffer() override;
};
}