Skip to content

Commit

Permalink
Expand.projections should not be a Stream
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Sep 21, 2017
1 parent 55d5fa7 commit aa263d7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -268,7 +268,7 @@ class Analyzer(
* We need to get all of its subsets for the rule described above, the subset is
* represented as sequence of expressions.
*/
def rollupExprs(exprs: Seq[Expression]): Seq[Seq[Expression]] = exprs.inits.toSeq
def rollupExprs(exprs: Seq[Expression]): Seq[Seq[Expression]] = exprs.inits.toIndexedSeq

/*
* GROUP BY a, b, c WITH CUBE
Expand Down

0 comments on commit aa263d7

Please sign in to comment.