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 1521099 commit f883c02Copy full SHA for f883c02
yql/essentials/core/type_ann/type_ann_core.cpp
@@ -8786,6 +8786,8 @@ template <NKikimr::NUdf::EDataSlot DataSlot>
8786
ctx.Expr.AddError(TIssue(ctx.Expr.GetPosition(input->Child(0)->Pos()),
8787
TStringBuilder() << "Mismatch item type, expected: " << *firstType << ", got: " << *input->Child(0)->GetTypeAnn()));
8788
return IGraphTransformer::TStatus::Error;
8789
+ } else if (convertStatus.Level != IGraphTransformer::TStatus::Ok) {
8790
+ return convertStatus;
8791
}
8792
8793
input->SetTypeAnn(ctx.Expr.MakeType<TOptionalExprType>(variantType));
0 commit comments