Hello, Hello,
I would like to create a user defined function that would return a boolean
value.
Use case would be :
SELECT * FROM x WHERE MyFunction();
I haven't found any BooleanHolder in order to.
@Output
BooleanHolder out;
The only way I have is:
SELECT * FROM x WHERE MyFunction() =1;
Maybe I miss something
Thanks
