Great work!
We are using SQL Server 2008. I create following function:
CREATE FUNCTION MyTestFunc () RETURNS @t table (id int) AS
BEGIN
INSERT @t SELECT 100
RETURN
END;
After creation I can call the table successfully:
SELECT * FROM MyTestFunc();
Above query returns id / 100, which is correct.
Now the problem is, the function "MyTestFunc" does not show up in the object browser in HeidiSQL (version 8.3 build 4822). Therefore I cannot use the GUI for altering the function.
Can this be fixed, please? (there are a lot of legacy functions of this kind in our DB and this issue does not allow us to use HeidiSQL)
kind regards,
peter