Иван Гладуш
Иван Гладуш

Reputation: 642

How to create table (set returning) function in redshift?

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

Answers (1)

user330315
user330315

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

Related Questions