Przewalski
Member
Hi,
I had this line of code and it triggered an error from the beautifier
I replace the code and it kept working
I had this line of code and it triggered an error from the beautifier
Code:
RETURN CASE l_ret_value WHEN 'N' THEN Null ELSE '1' END;
Code:
IF l_ret_value = 'N'
THEN
RETURN NULL;
ELSE
RETURN '1';
END IF;