rspec/rules/S141/plsql/rule.adoc

28 lines
442 B
Plaintext
Raw Normal View History

== Why is this an issue?
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.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,sql]
2021-04-28 16:49:39 +02:00
----
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[]