Are postgres UDFs supported in YugabyteDB YSQL, and can these functions be called from the context of SQL statements?
Yes functions are available Create function statement [YSQL] | YugabyteDB Docs and can be called in sql statements.
We build on top of Postgresql codebase so most functionality is already supported.
See examples for sql and pl/pgsql functions: Create function statement [YSQL] | YugabyteDB Docs
1 Like