2012-06-18 07:49:19 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Interpreters/Context.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
#include <DB/Interpreters/IInterpreter.h>
|
2012-06-18 07:49:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Вывести список имён таблиц/баз данных по некоторым условиям.
|
|
|
|
|
* Интерпретирует запрос путём замены его на запрос SELECT из таблицы system.tables или system.databases.
|
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
|
class InterpreterShowTablesQuery : public IInterpreter
|
2012-06-18 07:49:19 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
InterpreterShowTablesQuery(ASTPtr query_ptr_, Context & context_);
|
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
|
BlockIO execute() override;
|
2012-06-18 07:49:19 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
|
|
|
|
|
|
|
|
|
String getRewrittenQuery();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|