rspec/rules/S2527/cobol/rule.adoc

25 lines
370 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
UPDATE books
SET title = 'unknown'
WHERE title = NULL -- Noncompliant
----
== Compliant Solution
----
UPDATE books
SET title = 'unknown'
WHERE title IS NULL
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]