ClickHouse/src/Interpreters/InterpreterShowTablesQuery.h

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

35 lines
798 B
C++
Raw Normal View History

2012-06-18 07:49:19 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
2019-03-11 14:01:45 +00:00
#include <Parsers/IAST_fwd.h>
2012-06-18 07:49:19 +00:00
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
2012-06-18 07:49:19 +00:00
2017-05-23 18:24:43 +00:00
/** Return a list of tables or databases meets specified conditions.
* Interprets a query through replacing it to SELECT query from system.tables or system.databases.
2012-06-18 07:49:19 +00:00
*/
2021-05-31 14:49:02 +00:00
class InterpreterShowTablesQuery : public IInterpreter, WithMutableContext
2012-06-18 07:49:19 +00:00
{
public:
2021-05-31 14:49:02 +00:00
InterpreterShowTablesQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_);
2012-06-18 07:49:19 +00:00
2015-06-18 02:11:05 +00:00
BlockIO execute() override;
2012-06-18 07:49:19 +00:00
/// Ignore quota and limits here because execute() produces a SELECT query which checks quotas/limits by itself.
bool ignoreQuota() const override { return true; }
bool ignoreLimits() const override { return true; }
2012-06-18 07:49:19 +00:00
private:
ASTPtr query_ptr;
String getRewrittenQuery();
};
}