Skip to content

Commit

Permalink
Fix mistake in SqlUnaryExpression::Print (dotnet#24016)
Browse files Browse the repository at this point in the history
Fix mistake in SqlUnaryExpression::Print
  • Loading branch information
Marusyk authored and Ali-YousefiTelori committed Feb 10, 2021
1 parent 20f428d commit 1ed9160
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ protected override void Print(ExpressionPrinter expressionPrinter)
{
expressionPrinter.Append("CAST(");
expressionPrinter.Visit(Operand);
expressionPrinter.Append(")");
expressionPrinter.Append(" AS ");
expressionPrinter.Append(TypeMapping.StoreType);
expressionPrinter.Append(")");
Expand Down

0 comments on commit 1ed9160

Please sign in to comment.