rspec/rules/S1066/plsql/rule.adoc

20 lines
232 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
IF something THEN
IF something_else THEN
-- ...
END IF;
END IF;
----
== Compliant Solution
----
IF something AND something_else THEN
-- ...
END IF;
----