Skip to content

Commit 7b134a5

Browse files
committed
fix: invalid ToString() for literal expression
1 parent 9813d46 commit 7b134a5

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/TagBites.DB/Sql/Core/Expressions/SqlLiteralExpression.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Linq;
33

44
namespace TagBites.Sql
@@ -26,10 +26,6 @@ protected internal override void Accept(SqlQueryResolver resolver, SqlQueryBuild
2626
{
2727
resolver.VisitExpression(this, builder);
2828
}
29-
public override string ToString()
30-
{
31-
return $"Format: {Format}, Args: {Args}";
32-
}
3329

3430
protected bool Equals(SqlLiteralExpression other)
3531
{

0 commit comments

Comments
 (0)