Repository: spark
Updated Branches:
  refs/heads/branch-1.2 9c9b4bd1e -> e0a6d36bc


[SQL] add @group tab in limit() and count()

group tab is missing for scaladoc

Author: Jacky Li <[email protected]>

Closes #3458 from jackylk/patch-7 and squashes the following commits:

0121a70 [Jacky Li] add @group tab in limit() and count()

(cherry picked from commit bafee67ebad01f7aea2cd393a70b57eb8345eeb0)
Signed-off-by: Michael Armbrust <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/e0a6d36b
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/e0a6d36b
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/e0a6d36b

Branch: refs/heads/branch-1.2
Commit: e0a6d36bc96df63fb8cc5c3b4e516ef1011849ef
Parents: 9c9b4bd
Author: Jacky Li <[email protected]>
Authored: Mon Dec 1 13:12:30 2014 -0800
Committer: Michael Armbrust <[email protected]>
Committed: Mon Dec 1 13:13:16 2014 -0800

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/e0a6d36b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala 
b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
index 452baab..c6d4dab 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
@@ -225,6 +225,8 @@ class SchemaRDD(
    * {{{
    *   schemaRDD.limit(10)
    * }}}
+   * 
+   * @group Query
    */
   def limit(limitNum: Int): SchemaRDD =
     new SchemaRDD(sqlContext, Limit(Literal(limitNum), logicalPlan))
@@ -355,6 +357,8 @@ class SchemaRDD(
    * Return the number of elements in the RDD. Unlike the base RDD 
implementation of count, this
    * implementation leverages the query optimizer to compute the count on the 
SchemaRDD, which
    * supports features such as filter pushdown.
+   * 
+   * @group Query
    */
   @Experimental
   override def count(): Long = 
aggregate(Count(Literal(1))).collect().head.getLong(0)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to