We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cfb36a commit ac37933Copy full SHA for ac37933
ydb/library/yql/core/type_ann/type_ann_core.cpp
@@ -2749,7 +2749,9 @@ namespace NTypeAnnImpl {
2749
if (!(*dataTypeOne == *dataTypeTwo)) {
2750
ctx.Expr.AddError(TIssue(
2751
ctx.Expr.GetPosition(input->Pos()),
2752
- TStringBuilder() << "Cannot calculate with different decimals."
+ TStringBuilder() << "Cannot calculate with different decimals: "
2753
+ << static_cast<const TTypeAnnotationNode&>(*dataType[0]) << " != "
2754
+ << static_cast<const TTypeAnnotationNode&>(*dataType[1])
2755
));
2756
2757
return IGraphTransformer::TStatus::Error;
0 commit comments