Skip to content

[SPARK-9996][SPARK-9997][SQL]Add local expand and NestedLoopJoin operators #8642

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed

[SPARK-9996][SPARK-9997][SQL]Add local expand and NestedLoopJoin operators #8642

wants to merge 7 commits into from

Conversation

zsxwing
Copy link
Member

@zsxwing zsxwing commented Sep 7, 2015

This PR is in conflict with #8535 and #8573. Will update this one when they are merged.

@SparkQA
Copy link

SparkQA commented Sep 7, 2015

Test build #42095 has finished for PR 8642 at commit 9055d8a.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds the following public classes (experimental):
    • case class ConvertToSafeNode(conf: SQLConf, child: LocalNode) extends UnaryLocalNode(conf)
    • case class ConvertToUnsafeNode(conf: SQLConf, child: LocalNode) extends UnaryLocalNode(conf)
    • case class ExpandNode(
    • case class FilterNode(conf: SQLConf, condition: Expression, child: LocalNode)
    • case class LimitNode(conf: SQLConf, limit: Int, child: LocalNode) extends UnaryLocalNode(conf)
    • abstract class LocalNode(conf: SQLConf) extends TreeNode[LocalNode] with Logging
    • abstract class LeafLocalNode(conf: SQLConf) extends LocalNode(conf)
    • abstract class UnaryLocalNode(conf: SQLConf) extends LocalNode(conf)
    • abstract class BinaryLocalNode(conf: SQLConf) extends LocalNode(conf)
    • case class NestedLoopJoinNode(
    • case class ProjectNode(conf: SQLConf, projectList: Seq[NamedExpression], child: LocalNode)
    • case class SeqScanNode(conf: SQLConf, output: Seq[Attribute], data: Seq[InternalRow])
    • case class UnionNode(conf: SQLConf, children: Seq[LocalNode]) extends LocalNode(conf)

override def next(): Boolean = {
idx += 1
if (idx < groups.length) {
result = groups(idx)(input)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hm, at this point input hasn't been initialized yet has it? Did you intend to pass null into the projection?

@SparkQA
Copy link

SparkQA commented Sep 11, 2015

Test build #42330 has finished for PR 8642 at commit 514d3d2.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds the following public classes (experimental):
    • case class ExpandNode(
    • case class NestedLoopJoinNode(

@SparkQA
Copy link

SparkQA commented Sep 11, 2015

Test build #42336 has finished for PR 8642 at commit 4b18418.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds the following public classes (experimental):
    • case class ExpandNode(
    • case class NestedLoopJoinNode(

result = groups(idx)(input)
idx += 1
true
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about:

if (idx < 0 || idx >= groups.length) {
  if (child.next()) {
    input = child.fetch()
    idx = 0
  } else {
    return false
  }
}
result = groups(idx)(input)
idx += 1
true

a little less duplication

@andrewor14
Copy link
Contributor

@zsxwing I left some suggestions on reducing code duplication, but otherwise this looks pretty good.

@zsxwing
Copy link
Member Author

zsxwing commented Sep 14, 2015

@andrewor14 thanks for your reviewing. I updated this PR as per your comments.

@SparkQA
Copy link

SparkQA commented Sep 14, 2015

Test build #42421 has finished for PR 8642 at commit c6e80a2.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds the following public classes (experimental):
    • case class ExpandNode(
    • case class NestedLoopJoinNode(

@andrewor14
Copy link
Contributor

LGTM, thanks I'm merging this into master.

@asfgit asfgit closed this in 217e496 Sep 14, 2015
@zsxwing zsxwing deleted the expand-nest-join branch September 15, 2015 04:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants