Hello > According to the documentation of alias ( > https://www.h2database.com/html/commands.html#create_alias): > *Creates a new function alias. If this is a ResultSet returning function, > by default the return value is cached in a local temporary file.* > This line of documentation seems to be outdated, the related setting for *table value functions* was removed from H2.
And your function should be a *regular function*, I don't see any reasons to return a table from MD5 function. It should simply return a result as a string or array of bytes. > but I'd assume they would "share" the same local temporary file > No, they wouldn't. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/b7270db7-cd91-4c63-8b52-e2be853734den%40googlegroups.com.
