#pragma once
#include "binder/bound_statement_visitor.h"
#include "binder/query/query_graph_label_analyzer.h"
namespace lbug {
namespace binder {
class MatchClausePatternLabelRewriter final : public BoundStatementVisitor {
public:
explicit MatchClausePatternLabelRewriter(const main::ClientContext& clientContext)
: analyzer{clientContext, false } {}
void visitMatchUnsafe(BoundReadingClause& readingClause) override;
private:
QueryGraphLabelAnalyzer analyzer;
};
} }