yql_eval_expr.h 518 B

123456789101112131415161718192021
  1. #pragma once
  2. #include <yql/essentials/core/yql_data_provider.h>
  3. #include <yql/essentials/core/yql_type_annotation.h>
  4. #include <yql/essentials/ast/yql_expr.h>
  5. namespace NKikimr {
  6. namespace NMiniKQL {
  7. class IFunctionRegistry;
  8. }
  9. }
  10. namespace NYql {
  11. IGraphTransformer::TStatus EvaluateExpression(const TExprNode::TPtr& input, TExprNode::TPtr& output, TTypeAnnotationContext& types, TExprContext& ctx,
  12. const NKikimr::NMiniKQL::IFunctionRegistry& functionRegistry, IGraphTransformer* calcTransfomer = nullptr);
  13. }