ClickHouse/src/Interpreters/InterpreterOptimizeQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
570 B
C++
Raw Normal View History

2012-07-31 19:08:49 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
2019-03-11 14:01:45 +00:00
#include <Parsers/IAST_fwd.h>
2012-07-31 19:08:49 +00:00
namespace DB
{
class AccessRightsElements;
2017-05-23 18:24:43 +00:00
/** Just call method "optimize" for table.
2012-07-31 19:08:49 +00:00
*/
class InterpreterOptimizeQuery : public IInterpreter, WithContext
2012-07-31 19:08:49 +00:00
{
public:
InterpreterOptimizeQuery(const ASTPtr & query_ptr_, ContextPtr context_) : WithContext(context_), query_ptr(query_ptr_) {}
2012-07-31 19:08:49 +00:00
2016-12-12 07:24:56 +00:00
BlockIO execute() override;
2012-07-31 19:08:49 +00:00
bool supportsTransactions() const override { return true; }
2012-07-31 19:08:49 +00:00
private:
2020-01-24 16:20:36 +00:00
AccessRightsElements getRequiredAccess() const;
2012-07-31 19:08:49 +00:00
ASTPtr query_ptr;
};
}