Update ExpressionElementParsers.h

This commit is contained in:
alexey-milovidov 2020-11-02 16:15:40 +03:00 committed by GitHub
parent 4cfae808fa
commit 5633dfb402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,7 @@ protected:
/** An identifier, for example, x_yz123 or `something special`
* If allow_query_parameter_ = true, also parses substitutions in form {name:Identifier}
*/
class ParserIdentifier : public IParserBase
{
@ -312,7 +313,7 @@ private:
class ParserIdentifierOrSubstitution : public IParserBase
{
protected:
const char * getName() const override { return "identifier substitution"; }
const char * getName() const override { return "identifier or substitution"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};