Skip to content

Commit 885628c

Browse files
committed
remove unnecessary .date within dateLiteral
1 parent a5b72bc commit 885628c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GoatQuery/src/Ast/Literals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ public sealed class DateLiteral : QueryExpression
7676

7777
public DateLiteral(Token token, DateTime value) : base(token)
7878
{
79-
Value = value.Date;
79+
Value = value;
8080
}
8181
}

0 commit comments

Comments
 (0)