rspec/rules/S141/plsql/rule.adoc

16 lines
241 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
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.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
begin
null;
NULL; -- Noncompliant
end;
/
----