#pragma once #include #include namespace DB { class ASTFunction; /// Replaces all the "or"'s with {i}like to multiMatchAny class ConvertFunctionOrLikeData { public: using TypeToVisit = ASTFunction; static void visit(ASTFunction & function, ASTPtr & ast); }; using ConvertFunctionOrLikeVisitor = InDepthNodeVisitor, true>; }