Skip to content

Commit

Permalink
Fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Ganelin committed Jun 9, 2015
1 parent c4e3bf5 commit d388f86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private[r] object SQLUtils {
}

def createStructField(name: String, dataType: String, nullable: Boolean): StructField = {
val dtObj = DataType.fromString(dataType)
val dtObj = DataTypeParser.parse(dataType)
StructField(name, dtObj, nullable)
}

Expand Down

0 comments on commit d388f86

Please sign in to comment.