22 lines
275 B
Plaintext
22 lines
275 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
CREATE FUNCTION my_function_ RETURN PLS_INTEGER AS -- Noncompliant
|
||
|
BEGIN
|
||
|
RETURN 42;
|
||
|
END;
|
||
|
/
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
CREATE FUNCTION my_function RETURN PLS_INTEGER AS
|
||
|
BEGIN
|
||
|
RETURN 42;
|
||
|
END;
|
||
|
/
|
||
|
----
|