Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
fix scalastyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Harish Butani committed Feb 1, 2016
1 parent bf1f16a commit 7cc82b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ sealed trait JoinNode {
val otherJoinPredicate : Option[Expression]

private def checkStarJoin(tables: Map[String, DimTableInfo])
(implicit sSchema: StarSchema): Either[String, Map[String, DimTableInfo]] = {
(implicit sSchema: StarSchema
): Either[String, Map[String, DimTableInfo]] = {
(sSchema.isStarJoin(leftExpressions, rightExpressions), this) match {
case (None, _) =>
Left(s"Join condition is not a Star Schema " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,4 +407,4 @@ object StarSchema {

}

}
}

0 comments on commit 7cc82b7

Please sign in to comment.