Example (screenshot) Example (for copy and paste) CREATE FUNCTION public.test( IN in_data1 CHARACTER VARYING, IN in_data2 CHARACTER VARYING) RETURNS VOID AS $$ DECLARE _data3 CHARACTER VARYING; _data4 CHARACTER VARYING; BEGIN SELECT * FROM public.function1(in_data1, in_data2) INTO _data3, _data4; PERFORM public.function2(_data3, _data4); END; $$ LANGUAGE plpgsql; Description In the test function for example I have 2 function calls: function1 and function2. But only the first one was correct detected: public schema has orange color if I select one of the variables, then the declaration is marked to The second function call is not been correct detected: public schema is black and do not have any tooltip used variables are static text to -- no highlight, no open declaration System Windows 7 x64 Java 1.8.0_25-b18 Eclipse 4.4.1 TEE 2.1.1.201410301251 PostgreSQL 9.3
↧