aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/test/resources/sql-tests/results/table-valued-functions.sql.out
Commit message (Collapse)AuthorAgeFilesLines
* [SPARK-17069] Expose spark.range() as table-valued function in SQLEric Liang2016-08-181-0/+87
## What changes were proposed in this pull request? This adds analyzer rules for resolving table-valued functions, and adds one builtin implementation for range(). The arguments for range() are the same as those of `spark.range()`. ## How was this patch tested? Unit tests. cc hvanhovell Author: Eric Liang <ekl@databricks.com> Closes #14656 from ericl/sc-4309.