Skip to content

Commit

Permalink
Rebase code
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferdinand Xu committed Feb 4, 2016
1 parent 195589e commit 739f111
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class SparkSQLParser(fallback: => ParserInterface) extends AbstractSparkSQLParse

private lazy val setRole: Parser[LogicalPlan] =
SET ~ ROLE ~ ident ^^ {
case set ~ role ~ roleName => fallback(List(set, role, roleName).mkString(" "))
case set ~ role ~ roleName => fallback.parsePlan(List(set, role, roleName).mkString(" "))
}

private lazy val set: Parser[LogicalPlan] =
Expand Down

0 comments on commit 739f111

Please sign in to comment.