Skip to content

Commit 10744ca

Browse files
committed
Insert a space after the start of the comment
1 parent 3b27af3 commit 10744ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/TableReader.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class HadoopTableReader(
188188
val hconf = broadcastedHiveConf.value.value
189189
val deserializer = localDeserializer.newInstance()
190190
deserializer.initialize(hconf, partProps)
191-
//get the table deserializer
191+
// get the table deserializer
192192
val tableSerDe = tableDesc.getDeserializerClass.newInstance()
193193
tableSerDe.initialize(hconf, tableDesc.getProperties)
194194

@@ -280,7 +280,7 @@ private[hive] object HadoopTableReader extends HiveInspectors {
280280

281281
val soi = convertdeserializer match {
282282
case Some(convert) =>
283-
//check need to convert
283+
// check need to convert
284284
if (deserializer.getObjectInspector.equals(convert.getObjectInspector)) {
285285
deserializer.getObjectInspector().asInstanceOf[StructObjectInspector]
286286
}
@@ -345,7 +345,7 @@ private[hive] object HadoopTableReader extends HiveInspectors {
345345
if (deserializer.getObjectInspector.equals(convert.getObjectInspector)) {
346346
deserializer.deserialize(value)
347347
}
348-
//If partition schema does not match table schema, update the row to match
348+
// If partition schema does not match table schema, update the row to match
349349
else {
350350
partTblObjectInspectorConverter.convert(deserializer.deserialize(value))
351351
}

0 commit comments

Comments
 (0)