Skip to content
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

Translate COALESCE as ISNULL #34171

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft

Translate COALESCE as ISNULL #34171

wants to merge 3 commits into from

Commits on Jul 6, 2024

  1. Configuration menu
    Copy the full SHA
    a910f82 View commit details
    Browse the repository at this point in the history
  2. Translate COALESCE as ISNULL

    `COALESCE`is a syntactic shortcut for the CASE expression. As such, the input
    values are evaluated multiple times.
    
    `ISNULL` does not have this shortcoming.
    
    Fixes dotnet#32519.
    ranma42 committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    f4387c6 View commit details
    Browse the repository at this point in the history
  3. Update baselines

    ranma42 committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    c9dd9a7 View commit details
    Browse the repository at this point in the history