Skip to content

Commit

Permalink
Reinstate const qualifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrk2 authored and kashwy committed Aug 26, 2023
1 parent 0e6cb2f commit 067e609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Parsers/Kusto/ParserKQLQuery.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ class ParserKQLBase : public IParserBase
{
public:
static String getExprFromToken(Pos & pos);
static String getExprFromToken(const String & text, uint32_t max_depth);
static String getExprFromToken(const String & text, const uint32_t max_depth);
static String getExprFromPipe(Pos & pos);
static bool setSubQuerySource(ASTPtr & select_query, ASTPtr & source, bool dest_is_subquery, bool src_is_subquery);
static bool parseSQLQueryByString(ParserPtr && parser, String & query, ASTPtr & select_node, int32_t max_depth);
bool parseByString(const String expr, ASTPtr & node, uint32_t max_depth);
bool parseByString(const String expr, ASTPtr & node, const uint32_t max_depth);
};

class ParserKQLQuery : public IParserBase
Expand Down

0 comments on commit 067e609

Please sign in to comment.