StorageBuffer: explicitly disable support for PREWHERE, because possibility of wrong query results [#CLICKHOUSE-2999].

This commit is contained in:
Alexey Milovidov 2017-05-12 17:02:24 +03:00
parent 4b852584ce
commit 3819216085

View File

@ -85,7 +85,7 @@ public:
void rename(const String & new_path_to_db, const String & new_database_name, const String & new_table_name) override { name = new_table_name; }
bool supportsSampling() const override { return true; }
bool supportsPrewhere() const override { return true; }
bool supportsPrewhere() const override { return false; }
bool supportsFinal() const override { return true; }
bool supportsIndexForIn() const override { return true; }
bool supportsParallelReplicas() const override { return true; }