rspec/rules/S141/plsql/rule.adoc

31 lines
467 B
Plaintext
Raw Permalink 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)
=== Message
Lowercase the reserved word "{0}".
endif::env-github,rspecator-view[]