Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix comparison of a nullable value to a non-nullable saved value. (#2…
…1507) (#21516) The code generated for the case when a non-nullable value was saved via saveAs and then a nullable value was being compared to it did not compile, because we would try to do .IsNull() and .Value() on the non-nullable saved value. The changes here check whether the saved value is actually nullable and generate code accordingly, instead of assuming that if we're comparing a nullable to something the something must also be nullable. Co-authored-by: Boris Zbarsky <[email protected]>
- Loading branch information