Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Davies Liu committed Feb 3, 2015
1 parent 78ebcfa commit 35ccb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/core/src/main/scala/org/apache/spark/sql/Column.scala
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ trait Column extends DataFrame {
* @param startPos expression for the starting position.
* @param len expression for the length of the substring.
*/
override def substr(startPos: Column, len: Column): Column = constructColumn(null) {
def substr(startPos: Column, len: Column): Column = constructColumn(null) {
Substring(expr, startPos.expr, len.expr)
}

Expand Down

0 comments on commit 35ccb9f

Please sign in to comment.