Skip to content

Commit

Permalink
Insert a space after the start of the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlyn committed Feb 2, 2015
1 parent 3b27af3 commit 10744ca
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class HadoopTableReader(
val hconf = broadcastedHiveConf.value.value
val deserializer = localDeserializer.newInstance()
deserializer.initialize(hconf, partProps)
//get the table deserializer
// get the table deserializer
val tableSerDe = tableDesc.getDeserializerClass.newInstance()
tableSerDe.initialize(hconf, tableDesc.getProperties)

Expand Down Expand Up @@ -280,7 +280,7 @@ private[hive] object HadoopTableReader extends HiveInspectors {

val soi = convertdeserializer match {
case Some(convert) =>
//check need to convert
// check need to convert
if (deserializer.getObjectInspector.equals(convert.getObjectInspector)) {
deserializer.getObjectInspector().asInstanceOf[StructObjectInspector]
}
Expand Down Expand Up @@ -345,7 +345,7 @@ private[hive] object HadoopTableReader extends HiveInspectors {
if (deserializer.getObjectInspector.equals(convert.getObjectInspector)) {
deserializer.deserialize(value)
}
//If partition schema does not match table schema, update the row to match
// If partition schema does not match table schema, update the row to match
else {
partTblObjectInspectorConverter.convert(deserializer.deserialize(value))
}
Expand Down

0 comments on commit 10744ca

Please sign in to comment.