aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2016-01-26 14:29:29 -0800
committerCheng Lian <lian@databricks.com>2016-01-26 14:29:29 -0800
commit83507fea9f45c336d73dd4795b8cb37bcd63e31d (patch)
treec159f13dcd8ee7cf5ee0ff4b2e2ee071f6d1e491
parentee74498de372b16fe6350e3617e9e6ec87c6ae7b (diff)
downloadspark-83507fea9f45c336d73dd4795b8cb37bcd63e31d.tar.gz
spark-83507fea9f45c336d73dd4795b8cb37bcd63e31d.tar.bz2
spark-83507fea9f45c336d73dd4795b8cb37bcd63e31d.zip
[SQL] Minor Scaladoc format fix
Otherwise the `^` character is always marked as error in IntelliJ since it represents an unclosed superscript markup tag. Author: Cheng Lian <lian@databricks.com> Closes #10926 from liancheng/agg-doc-fix.
-rw-r--r--sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
index ddd99c51ab..561fa3321d 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
@@ -200,7 +200,7 @@ abstract class ImperativeAggregate extends AggregateFunction with CodegenFallbac
* For example, we have two aggregate functions `avg(x)` and `avg(y)`, which share the same
* aggregation buffer. In this shared buffer, the position of the first buffer value of `avg(x)`
* will be 0 and the position of the first buffer value of `avg(y)` will be 2:
- *
+ * {{{
* avg(x) mutableAggBufferOffset = 0
* |
* v
@@ -210,7 +210,7 @@ abstract class ImperativeAggregate extends AggregateFunction with CodegenFallbac
* ^
* |
* avg(y) mutableAggBufferOffset = 2
- *
+ * }}}
*/
protected val mutableAggBufferOffset: Int
@@ -233,7 +233,7 @@ abstract class ImperativeAggregate extends AggregateFunction with CodegenFallbac
* `avg(x)` and `avg(y)`. In the shared input aggregation buffer, the position of the first
* buffer value of `avg(x)` will be 1 and the position of the first buffer value of `avg(y)`
* will be 3 (position 0 is used for the value of `key`):
- *
+ * {{{
* avg(x) inputAggBufferOffset = 1
* |
* v
@@ -243,7 +243,7 @@ abstract class ImperativeAggregate extends AggregateFunction with CodegenFallbac
* ^
* |
* avg(y) inputAggBufferOffset = 3
- *
+ * }}}
*/
protected val inputAggBufferOffset: Int