rspec/rules/S1499/cobol/rule.adoc

29 lines
459 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
SELECT *
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'
----
== Compliant Solution
----
SELECT firstname, lastname
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
endif::env-github,rspecator-view[]