rspec/rules/S2561/plsql/rule.adoc
2022-02-04 16:28:24 +00:00

34 lines
453 B
Plaintext

Shared coding conventions allow teams to collaborate efficiently. This rule checks that reserved words are written in upper case.
== Noncompliant Code Example
[source,sql]
----
BEGIN
null; -- Noncompliant
END;
/
----
== Compliant Solution
[source,sql]
----
BEGIN
NULL;
END;
/
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]