-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLite Query: Should we be translating decimal/TimeSpan operations? #10534
Comments
😢 |
This is a specific case of the general problem described in #10265. Leaving this issue open as well since the two things may end up with different priorities. |
|
Found several more cases involving DateTime, DateTimeOffset, and ulong. |
Here's a table of the operations we should block server-eval for:
|
Filed #11925 for blocking GroupBy() |
Any operation (besides equality comparison) on
decimal
values will be lossy on SQLite since they are implicitly converted toREAL
on the server. Should we continue translating them?The text was updated successfully, but these errors were encountered: