ClickHouse/dbms/include/DB/Interpreters/InterpreterCreateQuery.h
2011-08-18 20:33:20 +00:00

22 lines
476 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <DB/Storages/IStorage.h>
#include <DB/Interpreters/Context.h>
namespace DB
{
/** Позволяет создать новую таблицу или создать объект уже существующей таблицы.
*/
class InterpreterCreateQuery
{
public:
/// Добавляет созданную таблицу в контекст, а также возвращает её.
StoragePtr execute(ASTPtr query, Context & context);
};
}