rspec/rules/S3641/tsql/rule.adoc
Arseniy Zaostrovnykh 7ca29f686f Force linebreaks
2021-02-02 15:02:10 +01:00

9 lines
580 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

A ``++WHERE++`` clause condition that uses ``++NOT IN++`` with a subquery will have unexpected results if that subquery returns ``++NULL++``. On the other hand, ``++NOT EXISTS++`` subqueries work reliably under the same conditions.
This rule raises an issue when ``++NOT IN++`` is used with a subquery. This rule doesn't check if the selected column is a nullable column because the rules engine has no information about the table definition. It's up to the developer to review manually if the column is nullable.
include::../noncompliant.adoc[]
include::../compliant.adoc[]