Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlyn committed Mar 18, 2015
1 parent b41d6b9 commit 9c8da74
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private[hive] object HiveShim {

def getStatsSetupConstRawDataSize = StatsSetupConst.RAW_DATA_SIZE

def createDefaultDBIfNeeded(context: HiveContext) = {}
def createDefaultDBIfNeeded(context: HiveContext) = { }

def getCommandProcessor(cmd: Array[String], conf: HiveConf) = {
CommandProcessorFactory.get(cmd(0), conf)
Expand Down Expand Up @@ -244,8 +244,9 @@ private[hive] object HiveShim {
}
}

def getConvertedOI(inputOI: ObjectInspector,
outputOI: ObjectInspector): ObjectInspector = {
def getConvertedOI(
inputOI: ObjectInspector,
outputOI: ObjectInspector): ObjectInspector = {
ObjectInspectorConverters.getConvertedOI(inputOI, outputOI, true)
}

Expand Down

0 comments on commit 9c8da74

Please sign in to comment.