Fix build

This commit is contained in:
Michael Kolupaev 2024-01-26 23:03:31 +00:00
parent 5e4d3b2e43
commit 361aa4ffad

View File

@ -7,7 +7,6 @@
#include <Parsers/ParserSetQuery.h>
#include <Parsers/ParserTimeInterval.h>
#include <Parsers/CommonParsers.h>
#include <Storages/MaterializedView/RefreshSettings.h>
namespace DB
{
@ -96,10 +95,6 @@ bool ParserRefreshStrategy::parseImpl(Pos & pos, ASTPtr & node, Expected & expec
if (!ParserSetQuery{true}.parse(pos, settings, expected))
return false;
refresh->set(refresh->settings, settings);
/// Validate.
RefreshSettings parsed_settings;
parsed_settings.applyChanges(refresh->settings->changes);
}
if (ParserKeyword{"APPEND"}.ignore(pos, expected))