== Why is this an issue? include::../description.adoc[] === Noncompliant code example With the default threshold of 3: [source,sql] ---- BEGIN prepare('action1'); execute('action1'); release('action1'); END; / ---- === Compliant solution [source,sql] ---- DECLARE action CONSTANT VARCHAR2(7) := 'action1'; BEGIN prepare(action); execute(action); release(action); END; / ---- include::../exceptions.adoc[] ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] include::../parameters.adoc[] include::../highlighting.adoc[] ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]