Description
Currently, the table-valued generator function explode/explode_outer can only be used in the SELECT clause of a query:
SELECT explode(array(1, 2))
This task is to allow table-valued functions to be used in the FROM clause of a query:
SELECT * FROM explode(array(1, 2))