We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1268db commit 05ce6f9Copy full SHA for 05ce6f9
ydb/library/yql/core/type_ann/type_ann_types.cpp
@@ -942,8 +942,9 @@ namespace NTypeAnnImpl {
942
}
943
944
// TODO: Collect type annotation directly from AST.
945
- auto callableTransformer = CreateExtCallableTypeAnnotationTransformer(ctx.Types);
946
- auto typeTransformer = CreateTypeAnnotationTransformer(callableTransformer, ctx.Types);
+ NYql::TTypeAnnotationContext cleanTypes;
+ auto callableTransformer = CreateExtCallableTypeAnnotationTransformer(cleanTypes);
947
+ auto typeTransformer = CreateTypeAnnotationTransformer(callableTransformer, cleanTypes);
948
if (InstantTransform(*typeTransformer, exprRoot, ctx.Expr) != IGraphTransformer::TStatus::Ok) {
949
return IGraphTransformer::TStatus::Error;
950
0 commit comments