Compiler-Hints: FUNCTION RETURN PIPELINED

Marc Bisping

Member²
PL/SQL-Developer Version 8.0.0.1480

Hello,

As I define a pipelined-function

CREATE FUNCTION fct_test (...)
RETURN ...
PIPELINED IS
...
BEGIN
...
END fct_test;

to use it in a SELECT-Statement

SELECT .... FROM TABLE(fct_test(...));

the Compiler-Hint "Function '...' does not return a value"
is printed - but there is a return-value!

Can you fix it in the hints please?

 
Last edited:
Back
Top