Skip to content

Commit

Permalink
[REBASE] Rebasing with master branch and Fixing rebase conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylk committed Jul 18, 2018
1 parent d4a28a2 commit 239a6ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -139,7 +139,8 @@ public TableSchema build() {
String localdictionaryThreshold = localDictionaryThreshold.equalsIgnoreCase("0") ?
CarbonCommonConstants.LOCAL_DICTIONARY_THRESHOLD_DEFAULT :
localDictionaryThreshold;
tableProperties.put(CarbonCommonConstants.LOCAL_DICTIONARY_THRESHOLD, localdictionaryThreshold);
tableProperties.put(
CarbonCommonConstants.LOCAL_DICTIONARY_THRESHOLD, localdictionaryThreshold);
for (int index = 0; index < allColumns.size(); index++) {
ColumnSchema colSchema = allColumns.get(index);
if (colSchema.getDataType() == DataTypes.STRING
Expand Down
Expand Up @@ -20,8 +20,8 @@ package org.apache.spark.sql
import java.io.File

import org.apache.hadoop.conf.Configuration
import org.apache.spark.scheduler.{SparkListener, SparkListenerApplicationEnd}
import org.apache.spark.{SparkConf, SparkContext}
import org.apache.spark.scheduler.{SparkListener, SparkListenerApplicationEnd}
import org.apache.spark.sql.SparkSession.Builder
import org.apache.spark.sql.profiler.Profiler
import org.apache.spark.util.Utils
Expand Down

0 comments on commit 239a6ca

Please sign in to comment.