SparkSQL has the uuid() SQL built-in function. However, I couldn't find it in Scala to use with the Dataset API.
Surely, we can just go with:
expr("uuid()")
And it will work properly since it will be parsed as an expression.
Do we have it in the Scala Dataset API? Where? If not, is there any important technical reason why not?
Thanks.
Bonus question: Do we have it in the python API? Where?