spark-instrumented-optimizer/sql/core/src/main
Reynold Xin 5051262d4c [SPARK-11489][SQL] Only include common first order statistics in GroupedData
We added a bunch of higher order statistics such as skewness and kurtosis to GroupedData. I don't think they are common enough to justify being listed, since users can always use the normal statistics aggregate functions.

That is to say, after this change, we won't support
```scala
df.groupBy("key").kurtosis("colA", "colB")
```

However, we will still support
```scala
df.groupBy("key").agg(kurtosis(col("colA")), kurtosis(col("colB")))
```

Author: Reynold Xin <rxin@databricks.com>

Closes #9446 from rxin/SPARK-11489.
2015-11-03 16:27:56 -08:00
..
java/org/apache/spark/sql [SPARK-11423] remove MapPartitionsWithPreparationRDD 2015-10-30 15:47:40 -07:00
resources [SPARK-11274] [SQL] Text data source support for Spark SQL. 2015-10-23 13:04:06 -07:00
scala/org/apache/spark/sql [SPARK-11489][SQL] Only include common first order statistics in GroupedData 2015-11-03 16:27:56 -08:00