diff options
author | udovichenko-r <udovichenko-r@yandex-team.ru> | 2022-02-09 21:07:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 15:58:17 +0300 |
commit | b78c7143329217632f2223ff8b3d36d0cdeadd41 (patch) | |
tree | 0483aa135ae6eb2e6c95f6336d8c951ee27fc41e | |
parent | 1d6cd820856d7a70d8be542a226815b5c26d7285 (diff) | |
download | ydb-b78c7143329217632f2223ff8b3d36d0cdeadd41.tar.gz |
[yql] Drop extract predicate ast tracer
ref:9783a393e14ecfc123c9f92914a6ba82ac7f9878
-rw-r--r-- | ydb/library/yql/core/extract_predicate/extract_predicate_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/core/extract_predicate/extract_predicate_impl.cpp b/ydb/library/yql/core/extract_predicate/extract_predicate_impl.cpp index 801634aa178..e2c16395b72 100644 --- a/ydb/library/yql/core/extract_predicate/extract_predicate_impl.cpp +++ b/ydb/library/yql/core/extract_predicate/extract_predicate_impl.cpp @@ -715,8 +715,8 @@ THolder<IGraphTransformer> CreateRangeExtractionOptimizer(TTypeAnnotationContext auto issueCode = TIssuesIds::CORE_EXEC; pipeline.AddServiceTransformers(issueCode); pipeline.AddTypeAnnotationTransformer(issueCode); - pipeline.Add(TExprLogTransformer::Sync("ExtractPredicateOpt", NLog::EComponent::Core, NLog::ELevel::TRACE), - "ExtractPredicateOpt", issueCode, "ExtractPredicateOpt"); + // pipeline.Add(TExprLogTransformer::Sync("ExtractPredicateOpt", NLog::EComponent::Core, NLog::ELevel::TRACE), + // "ExtractPredicateOpt", issueCode, "ExtractPredicateOpt"); pipeline.Add(CreateFunctorTransformer( [](const TExprNode::TPtr& input, TExprNode::TPtr& output, TExprContext& ctx) { DoOptimizeForRangeExtraction(input, output, true, ctx); |