Skip to content
Snippets Groups Projects
Commit 515abb9a authored by Michael Armbrust's avatar Michael Armbrust Committed by Xiangrui Meng
Browse files

[SQL] Add String option for DSL AS

Author: Michael Armbrust <michael@databricks.com>

Closes #3097 from marmbrus/asString and squashes the following commits:

6430520 [Michael Armbrust] Add String option for DSL AS
parent 5e73138a
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,8 @@ package object dsl {
def asc = SortOrder(expr, Ascending)
def desc = SortOrder(expr, Descending)
def as(s: Symbol) = Alias(expr, s.name)()
def as(alias: String) = Alias(expr, alias)()
def as(alias: Symbol) = Alias(expr, alias.name)()
}
trait ExpressionConversions {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment