aboutsummaryrefslogtreecommitdiff
path: root/contrib/storage-hbase/src
diff options
context:
space:
mode:
authorVolodymyr Vysotskyi <vvovyk@gmail.com>2017-12-21 15:01:50 +0200
committerVolodymyr Vysotskyi <vvovyk@gmail.com>2018-01-16 12:10:13 +0200
commit663518e8ae1a05e29895a3994213a1e9819c955b (patch)
treef910f0870cbfa8e6b0d4f49c1159d989a4776418 /contrib/storage-hbase/src
parent688e043b4546884d82422b266b419817d645acfc (diff)
DRILL-3993: Changes after code review.
Diffstat (limited to 'contrib/storage-hbase/src')
-rw-r--r--contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseSchemaFactory.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseSchemaFactory.java b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseSchemaFactory.java
index 810daaae4..b8e825bfb 100644
--- a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseSchemaFactory.java
+++ b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseSchemaFactory.java
@@ -75,10 +75,10 @@ public class HBaseSchemaFactory implements SchemaFactory {
try {
return new DrillHBaseTable(schemaName, plugin, scanSpec);
} catch (Exception e) {
- // Calcite firstly is looking for a table in the default schema, if a table was not found,
- // it is looking in root schema.
- // If a table does not exist, a query will fail at validation stage,
- // so the error should not be thrown there.
+ // Calcite firstly looks for a table in the default schema, if the table was not found,
+ // it looks in the root schema.
+ // If the table does not exist, a query will fail at validation stage,
+ // so the error should not be thrown here.
logger.warn("Failure while loading table '{}' for database '{}'.", name, schemaName, e.getCause());
return null;
}