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

26 lines
415 B
Plaintext

All reserved words should be written using the same case to ensure consistency in the code.
This rule checks that reserved words are all in lower case.
== Noncompliant Code Example
[source,sql]
----
begin
null;
NULL; -- Noncompliant
end;
/
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]