ClickHouse/src/Parsers/ASTCreateNamedCollectionQuery.h

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

33 lines
894 B
C++
Raw Normal View History

#pragma once
#include <Parsers/IAST.h>
#include <Parsers/ASTQueryWithOnCluster.h>
2022-11-15 14:49:25 +00:00
#include <Common/SettingsChanges.h>
namespace DB
{
class ASTCreateNamedCollectionQuery : public IAST, public ASTQueryWithOnCluster
{
public:
std::string collection_name;
2022-11-15 14:49:25 +00:00
SettingsChanges changes;
bool if_not_exists = false;
2023-11-08 16:36:20 +00:00
std::unordered_map<String, bool> overridability;
String getID(char) const override { return "CreateNamedCollectionQuery"; }
ASTPtr clone() const override;
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override;
ASTPtr getRewrittenASTWithoutOnCluster(const WithoutOnClusterASTRewriteParams &) const override { return removeOnCluster<ASTCreateNamedCollectionQuery>(clone()); }
2023-02-02 01:11:16 +00:00
QueryKind getQueryKind() const override { return QueryKind::Create; }
std::string getCollectionName() const;
};
}