You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2017/08/28 16:54:03 UTC

[jira] [Assigned] (SPARK-21644) LocalLimit.maxRows is defined incorrectly

     [ https://issues.apache.org/jira/browse/SPARK-21644?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-21644:
------------------------------------

    Assignee: Apache Spark  (was: Reynold Xin)

> LocalLimit.maxRows is defined incorrectly
> -----------------------------------------
>
>                 Key: SPARK-21644
>                 URL: https://issues.apache.org/jira/browse/SPARK-21644
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.2.0
>            Reporter: Reynold Xin
>            Assignee: Apache Spark
>
> {code}
> case class LocalLimit(limitExpr: Expression, child: LogicalPlan) extends UnaryNode {
>   override def output: Seq[Attribute] = child.output
>   override def maxRows: Option[Long] = {
>     limitExpr match {
>       case IntegerLiteral(limit) => Some(limit)
>       case _ => None
>     }
>   }
> }
> {code}
> This is simply wrong, since LocalLimit is only about partition level limits.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org