ClickHouse/dbms/src/Interpreters/InterpreterShowTablesQuery.cpp

55 lines
1.4 KiB
C++
Raw Normal View History

#include <IO/ReadBufferFromString.h>
2012-06-18 07:49:19 +00:00
#include <Parsers/ASTShowTablesQuery.h>
#include <Parsers/ASTIdentifier.h>
2012-06-18 07:49:19 +00:00
#include <Interpreters/executeQuery.h>
#include <Interpreters/InterpreterShowTablesQuery.h>
2012-06-18 07:49:19 +00:00
2017-04-16 05:40:17 +00:00
#include <iomanip>
2012-06-18 07:49:19 +00:00
namespace DB
{
InterpreterShowTablesQuery::InterpreterShowTablesQuery(ASTPtr query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_)
2012-06-18 07:49:19 +00:00
{
}
String InterpreterShowTablesQuery::getRewrittenQuery()
{
const ASTShowTablesQuery & query = typeid_cast<const ASTShowTablesQuery &>(*query_ptr);
/// SHOW DATABASES
if (query.databases)
return "SELECT name FROM system.databases";
2012-06-18 07:49:19 +00:00
String database = query.from.empty() ? context.getCurrentDatabase() : query.from;
2015-10-01 15:10:41 +00:00
2017-04-02 17:37:49 +00:00
/** The parameter check_database_access_rights is reset when the SHOW TABLES query is processed,
* So that all clients can see a list of all databases and tables in them regardless of their access rights
* to these databases.
*/
context.assertDatabaseExists(database, false);
2012-06-18 07:49:19 +00:00
std::stringstream rewritten_query;
2017-04-16 05:40:17 +00:00
rewritten_query << "SELECT name FROM system.tables WHERE database = " << std::quoted(database, '\'');
2012-06-18 07:49:19 +00:00
if (!query.like.empty())
2017-04-16 05:40:17 +00:00
rewritten_query << " AND name " << (query.not_like ? "NOT " : "") << "LIKE " << std::quoted(query.like, '\'');
return rewritten_query.str();
2012-06-18 07:49:19 +00:00
}
BlockIO InterpreterShowTablesQuery::execute()
{
return executeQuery(getRewrittenQuery(), context, true);
2012-06-18 07:49:19 +00:00
}
}