Avi Perl
05/10/2023, 3:45 PMSELECT app.some_function(2)
I see this so I put this on my table:
val functionName = CustomStringFunction("app.some_function", stringParam("2"))
How would I call this? (I suspect I am not doing this correctly at all...)
MyTable.functionName
<-- Like that?Chantal Loncle
05/11/2023, 9:03 PMfunctionName
like so:
MyTable.slice(functionName).selectAll()
generates SQL:
SELECT app.some_function('2') FROM MYTABLE
Is that the output you wanted or were you specifically interested in a SELECT without FROM statement?Avi Perl
05/11/2023, 9:11 PM