Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed Aug 17, 2016
1 parent 27fbbd9 commit c959f3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class QueryExecution(val sparkSession: SparkSession, val logical: LogicalPlan) {
}

def assertSupported(): Unit = {
if (sparkSession.sessionState.conf.isUnSupportedOperationCheckEnabled) {
if (sparkSession.sessionState.conf.isUnsupportedOperationCheckEnabled) {
UnsupportedOperationChecker.checkForBatch(analyzed)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ private[sql] class SQLConf extends Serializable with CatalystConf with Logging {

def checkpointLocation: Option[String] = getConf(CHECKPOINT_LOCATION)

def isUnSupportedOperationCheckEnabled: Boolean = getConf(UNSUPPORTED_OPERATION_CHECK_ENABLED)
def isUnsupportedOperationCheckEnabled: Boolean = getConf(UNSUPPORTED_OPERATION_CHECK_ENABLED)

def fileSinkLogDeletion: Boolean = getConf(FILE_SINK_LOG_DELETION)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ class StreamingQueryManager private[sql] (sparkSession: SparkSession) {
val analyzedPlan = df.queryExecution.analyzed
df.queryExecution.assertAnalyzed()

if (sparkSession.sessionState.conf.isUnSupportedOperationCheckEnabled) {
if (sparkSession.sessionState.conf.isUnsupportedOperationCheckEnabled) {
UnsupportedOperationChecker.checkForStreaming(analyzedPlan, outputMode)
}

Expand Down

0 comments on commit c959f3b

Please sign in to comment.