-
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
SqlNullabilityProcessor and COALESCE with more than two arguments #26344
Labels
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
type-enhancement
Milestone
Comments
Same problem in next code: efcore/src/EFCore.Relational/Query/SqlNullabilityProcessor.cs Lines 1731 to 1761 in 59e9ff2
|
maumar
added a commit
that referenced
this issue
Oct 21, 2021
…wo arguments Nested coalesce ops are converted to coalesce with multiple arguments. Fixing null semantics logic that only assumed coalesce function would have two arguments Fixes #26344
maumar
added a commit
that referenced
this issue
Oct 22, 2021
…wo arguments Nested coalesce ops are converted to coalesce with multiple arguments. Fixing null semantics logic that only assumed coalesce function would have two arguments Fixes #26344
maumar
added a commit
that referenced
this issue
Oct 22, 2021
…wo arguments Nested coalesce ops are converted to coalesce with multiple arguments. Fixing null semantics logic that only assumed coalesce function would have two arguments Fixes #26344
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
type-enhancement
Hello,
efcore/src/EFCore.Relational/Query/SqlNullabilityProcessor.cs
Lines 1035 to 1045 in 59e9ff2
SQL-function COALESCE allows usage more than two parameters.
My provider, for example, may generate a call of COALESCE with many arguments.
I think, your generic SqlNullabilityProcessor must process all arguments of COALESCE. Not only [0] and [1].
The text was updated successfully, but these errors were encountered: