Skip to content

Commit

Permalink
Fix infinite loop (woops)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Or committed Mar 16, 2016
1 parent d3f252d commit 2f5121b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private[sql] case class TableIdentifier(
}

private[sql] object TableIdentifier {
def apply(tableName: String): TableIdentifier = TableIdentifier(tableName)
def apply(tableName: String): TableIdentifier = new TableIdentifier(tableName)
}


Expand Down

0 comments on commit 2f5121b

Please sign in to comment.