2020-10-10 18:37:02 +00:00
|
|
|
#pragma once
|
2019-05-26 22:03:30 +00:00
|
|
|
/* Copyright (c) 2018 BlackBerry Limited
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License. */
|
|
|
|
|
|
|
|
#include <Parsers/ASTQueryWithTableAndOutput.h>
|
2019-10-08 18:42:22 +00:00
|
|
|
#include <Common/quoteString.h>
|
2019-05-26 22:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class ASTWatchQuery : public ASTQueryWithTableAndOutput
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
ASTPtr limit_length;
|
2023-05-25 08:14:47 +00:00
|
|
|
bool is_watch_events = false;
|
2019-05-26 22:03:30 +00:00
|
|
|
|
|
|
|
ASTWatchQuery() = default;
|
2021-09-06 22:13:54 +00:00
|
|
|
String getID(char) const override { return "WatchQuery_" + getDatabase() + "_" + getTable(); }
|
2019-05-26 22:03:30 +00:00
|
|
|
|
|
|
|
ASTPtr clone() const override
|
|
|
|
{
|
|
|
|
std::shared_ptr<ASTWatchQuery> res = std::make_shared<ASTWatchQuery>(*this);
|
|
|
|
res->children.clear();
|
|
|
|
cloneOutputOptions(*res);
|
2021-09-06 22:13:54 +00:00
|
|
|
cloneTableOptions(*res);
|
2019-05-26 22:03:30 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2023-02-02 01:11:16 +00:00
|
|
|
QueryKind getQueryKind() const override { return QueryKind::Create; }
|
|
|
|
|
2019-05-26 22:03:30 +00:00
|
|
|
protected:
|
|
|
|
void formatQueryImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override
|
|
|
|
{
|
|
|
|
std::string indent_str = s.one_line ? "" : std::string(4 * frame.indent, ' ');
|
|
|
|
|
2020-05-23 19:35:08 +00:00
|
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << "WATCH " << (s.hilite ? hilite_none : "")
|
2021-11-11 13:28:18 +00:00
|
|
|
<< (database ? backQuoteIfNeed(getDatabase()) + "." : "") << backQuoteIfNeed(getTable());
|
2019-05-26 22:03:30 +00:00
|
|
|
|
|
|
|
if (is_watch_events)
|
|
|
|
{
|
|
|
|
s.ostr << " " << (s.hilite ? hilite_keyword : "") << "EVENTS" << (s.hilite ? hilite_none : "");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (limit_length)
|
|
|
|
{
|
|
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << indent_str << "LIMIT " << (s.hilite ? hilite_none : "");
|
|
|
|
limit_length->formatImpl(s, state, frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|