Reputation: 642
I tried to create a table (set returning) function in redshift but failed.
Because redshift only supports scalar function (documentation). Is it true? Can I create table functions?
Upvotes: 1
Views: 744
Reputation:
The simple answer: no you can not create table functions ("set returning functions) as you can do in Postgres.
The section Unsupported PostgreSQL Features in the Redshift manual explicitly lists "Table functions".
Upvotes: 3