[ https://issues.apache.org/jira/browse/SPARK-16439?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15370555#comment-15370555 ]
Maciej Bryński edited comment on SPARK-16439 at 7/11/16 11:02 AM: ------------------------------------------------------------------ OK. Got this. Using spark-shell {code} case class Left(a: Long) case class Right(b: Long) val df_left = spark.range(10000).map(num => Left(num)) val df_right = spark.range(10000).map(num => Right(num)) df_left.registerTempTable("l") df_right.registerTempTable("r") spark.sql("select count(*) from l join r on l.a = r.b").collect() {code} Screenshot from SQL Query details attached as sample.png was (Author: maver1ck): OK. Got this. Using spark-shell {code} case class Left(a: Long) case class Right(b: Long) val df_left = spark.range(10000).map(num => Left(num)) val df_right = spark.range(10000).map(num => Right(num)) df_left.registerTempTable("l") df_right.registerTempTable("r") spark.sql("select count(*) from l join r on l.a = r.b").collect() {code} Screenshot from SQL Query details attached as sample.jpg > Incorrect information in SQL Query details > ------------------------------------------ > > Key: SPARK-16439 > URL: https://issues.apache.org/jira/browse/SPARK-16439 > Project: Spark > Issue Type: Bug > Components: SQL, Web UI > Affects Versions: 2.0.0 > Reporter: Maciej Bryński > Attachments: sample.png, spark.jpg > > > One picture is worth a thousand words. > Please see attachment > Incorrect values are in fields: > * data size > * number of output rows > * time to collect -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org