BUG testing function with CLOB input parameter

I'm using the latest PL/SQL Developer version, and it seems to have a bug when testing a function... When the function has an input CLOB parameter, when execute the test, the input parameter becomes null.

Thanks,
 
To pass data into a CLOB variable, you need to declare it as a Temporary CLOB. For normal CLOB's (as stored in the database), this is not possible.
 
Back
Top