Repository: hive Updated Branches: refs/heads/master 54ca6fc51 -> 7c164acc3
HIVE-12002: correct implementation typo (Alex Moundalexis, reviewed by Sergio Pena) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/7c164acc Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/7c164acc Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/7c164acc Branch: refs/heads/master Commit: 7c164acc39f05c807a8c3753d28ab2fc3f628701 Parents: 54ca6fc Author: Sergio Pena <[email protected]> Authored: Mon Oct 5 09:52:07 2015 -0500 Committer: Sergio Pena <[email protected]> Committed: Mon Oct 5 09:52:07 2015 -0500 ---------------------------------------------------------------------- beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java | 4 ++-- hcatalog/conf/proto-hive-site.xml | 2 +- hcatalog/src/packages/templates/conf/hive-site.xml.template | 2 +- .../src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java | 2 +- .../hadoop/hive/metastore/AlternateFailurePreListener.java | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/7c164acc/beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java ---------------------------------------------------------------------- diff --git a/beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java b/beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java index a6b11ba..7e8cc67 100644 --- a/beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java +++ b/beeline/src/java/org/apache/hive/beeline/HiveSchemaHelper.java @@ -165,7 +165,7 @@ public class HiveSchemaHelper { } /*** - * Base implemenation of NestedScriptParser + * Base implementation of NestedScriptParser * abstractCommandParser. * */ @@ -494,4 +494,4 @@ public class HiveSchemaHelper { throw new IllegalArgumentException("Unknown dbType " + dbName); } } -} \ No newline at end of file +} http://git-wip-us.apache.org/repos/asf/hive/blob/7c164acc/hcatalog/conf/proto-hive-site.xml ---------------------------------------------------------------------- diff --git a/hcatalog/conf/proto-hive-site.xml b/hcatalog/conf/proto-hive-site.xml index 7df7f46..5530511 100644 --- a/hcatalog/conf/proto-hive-site.xml +++ b/hcatalog/conf/proto-hive-site.xml @@ -91,7 +91,7 @@ <property> <name>hive.semantic.analyzer.factory.impl</name> <value>org.apache.hive.hcatalog.cli.HCatSemanticAnalyzerFactory</value> - <description>controls which SemanticAnalyzerFactory implemenation class is used by CLI</description> + <description>controls which SemanticAnalyzerFactory implementation class is used by CLI</description> </property> <property> http://git-wip-us.apache.org/repos/asf/hive/blob/7c164acc/hcatalog/src/packages/templates/conf/hive-site.xml.template ---------------------------------------------------------------------- diff --git a/hcatalog/src/packages/templates/conf/hive-site.xml.template b/hcatalog/src/packages/templates/conf/hive-site.xml.template index 5f89f4a..638aa35 100644 --- a/hcatalog/src/packages/templates/conf/hive-site.xml.template +++ b/hcatalog/src/packages/templates/conf/hive-site.xml.template @@ -88,7 +88,7 @@ <property> <name>hive.semantic.analyzer.factory.impl</name> <value>org.apache.hive.hcatalog.cli.HCatSemanticAnalyzerFactory</value> - <description>controls which SemanticAnalyzerFactory implemenation class is used by CLI</description> + <description>controls which SemanticAnalyzerFactory implementation class is used by CLI</description> </property> <property> http://git-wip-us.apache.org/repos/asf/hive/blob/7c164acc/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java ---------------------------------------------------------------------- diff --git a/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java b/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java index 9d10e21..ccb4c98 100644 --- a/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java +++ b/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java @@ -595,7 +595,7 @@ public class HiveMetaStore extends ThriftHiveMetastore { } private RawStore newRawStore() throws MetaException { - LOG.info(addPrefix("Opening raw store with implemenation class:" + LOG.info(addPrefix("Opening raw store with implementation class:" + rawStoreClassName)); Configuration conf = getConf(); http://git-wip-us.apache.org/repos/asf/hive/blob/7c164acc/metastore/src/test/org/apache/hadoop/hive/metastore/AlternateFailurePreListener.java ---------------------------------------------------------------------- diff --git a/metastore/src/test/org/apache/hadoop/hive/metastore/AlternateFailurePreListener.java b/metastore/src/test/org/apache/hadoop/hive/metastore/AlternateFailurePreListener.java index e5c983b..22146ba 100644 --- a/metastore/src/test/org/apache/hadoop/hive/metastore/AlternateFailurePreListener.java +++ b/metastore/src/test/org/apache/hadoop/hive/metastore/AlternateFailurePreListener.java @@ -29,7 +29,7 @@ import org.apache.hadoop.hive.metastore.events.PreEventContext; * * AlternateFailurePreListener. * - * An implemenation of MetaStorePreEventListener which fails every other time it's invoked, + * An implementation of MetaStorePreEventListener which fails every other time it's invoked, * starting with the first time. * * It also records and makes available the number of times it's been invoked.
