I want to use the optimizer_stats function like:
select optimizer_stats();
And it returns
SELECT: no such operator 'optimizer_stats'
But I can find it in the sys.functions table (id=5976).
Also I find the UDF like reverse(string) can't be used too:
sql>select reverse('abc');
SELECT: no such unary operator 'reverse(char)'
So what's the problem?