mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
30 lines
641 B
C++
30 lines
641 B
C++
|
#pragma once
|
|||
|
|
|||
|
#include <DB/Interpreters/Context.h>
|
|||
|
#include <DB/Interpreters/IInterpreter.h>
|
|||
|
|
|||
|
|
|||
|
namespace DB
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
/** Вывести список имён таблиц/баз данных по некоторым условиям.
|
|||
|
* Интерпретирует запрос путём замены его на запрос SELECT из таблицы system.tables или system.databases.
|
|||
|
*/
|
|||
|
class InterpreterShowTablesQuery : public IInterpreter
|
|||
|
{
|
|||
|
public:
|
|||
|
InterpreterShowTablesQuery(ASTPtr query_ptr_, Context & context_);
|
|||
|
|
|||
|
BlockIO execute() override;
|
|||
|
|
|||
|
private:
|
|||
|
ASTPtr query_ptr;
|
|||
|
Context context;
|
|||
|
|
|||
|
String getRewrittenQuery();
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
}
|