spark git commit: [SPARK-7320] [SQL] Add Cube / Rollup for dataframe

2015-05-20 Thread lian
Repository: spark Updated Branches: refs/heads/master b3abf0b8d - 09265ad7c [SPARK-7320] [SQL] Add Cube / Rollup for dataframe Add `cube` `rollup` for DataFrame For example: ```scala testData.rollup($a + $b, $b).agg(sum($a - $b)) testData.cube($a + $b, $b).agg(sum($a - $b)) ``` Author:

spark git commit: [SPARK-7320] [SQL] Add Cube / Rollup for dataframe

2015-05-20 Thread yhuai
Repository: spark Updated Branches: refs/heads/branch-1.4 b6182ce89 - 4fd674336 [SPARK-7320] [SQL] Add Cube / Rollup for dataframe This is a follow up for #6257, which broke the maven test. Add cube rollup for DataFrame For example: ```scala testData.rollup($a + $b, $b).agg(sum($a - $b))

spark git commit: [SPARK-7320] [SQL] Add Cube / Rollup for dataframe

2015-05-20 Thread yhuai
Repository: spark Updated Branches: refs/heads/master 895baf8f7 - 42c592adb [SPARK-7320] [SQL] Add Cube / Rollup for dataframe This is a follow up for #6257, which broke the maven test. Add cube rollup for DataFrame For example: ```scala testData.rollup($a + $b, $b).agg(sum($a - $b))