aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiang-Chi Hsieh <viirya@gmail.com>2015-04-03 18:31:48 +0100
committerSean Owen <sowen@cloudera.com>2015-04-03 18:31:48 +0100
commitdc6dff248d8f5d7de22af64b0586dfe3885731df (patch)
treee4f4197271ed916454463f1e623b4fcebe2fbaaa
parent512a2f191a6b53699373b6588f316b4437050425 (diff)
downloadspark-dc6dff248d8f5d7de22af64b0586dfe3885731df.tar.gz
spark-dc6dff248d8f5d7de22af64b0586dfe3885731df.tar.bz2
spark-dc6dff248d8f5d7de22af64b0586dfe3885731df.zip
[Minor][SQL] Fix typo
Just fix a typo. Author: Liang-Chi Hsieh <viirya@gmail.com> Closes #5352 from viirya/fix_a_typo and squashes the following commits: 303b2d2 [Liang-Chi Hsieh] Fix typo.
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
index ae5ce4cf4c..315fab673d 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
@@ -271,7 +271,7 @@ private[hive] class HiveMetastoreCatalog(hive: HiveContext) extends Catalog with
}
case other =>
logWarning(
- s"${metastoreRelation.databaseName}.${metastoreRelation.tableName} shold be stored " +
+ s"${metastoreRelation.databaseName}.${metastoreRelation.tableName} should be stored " +
s"as Parquet. However, we are getting a ${other} from the metastore cache. " +
s"This cached entry will be invalidated.")
cachedDataSourceTables.invalidate(tableIdentifier)