diff --git a/src/Parsers/ParserWithElement.h b/src/Parsers/ParserWithElement.h index 3b09c00f6a1..fe3628193b9 100644 --- a/src/Parsers/ParserWithElement.h +++ b/src/Parsers/ParserWithElement.h @@ -11,7 +11,7 @@ namespace DB class ParserWithElement : public IParserBase { public: - ParserWithElement(bool with_recursive_ = false) : with_recursive(with_recursive_) {} + explicit ParserWithElement(bool with_recursive_ = false) : with_recursive(with_recursive_) {} protected: const char * getName() const override { return "WITH element"; } bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;