You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by da...@apache.org on 2015/09/22 07:04:18 UTC

[47/50] [abbrv] hive git commit: HIVE-11731: Exclude hbase-metastore in itests for hadoop-1

HIVE-11731: Exclude hbase-metastore in itests for hadoop-1


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/757553e6
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/757553e6
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/757553e6

Branch: refs/heads/master
Commit: 757553e64280088bb2fc1546ac1259a519d064a6
Parents: 848b977
Author: Daniel Dai <da...@hortonworks.com>
Authored: Thu Sep 3 21:57:42 2015 -0700
Committer: Daniel Dai <da...@hortonworks.com>
Committed: Thu Sep 3 21:57:42 2015 -0700

----------------------------------------------------------------------
 .../metastore/hbase/HBaseStoreTestUtil.java     | 45 ++++++++++++++++++++
 1 file changed, 45 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/757553e6/itests/util/src/main/java/org/apache/hadoop/hive/metastore/hbase/HBaseStoreTestUtil.java
----------------------------------------------------------------------
diff --git a/itests/util/src/main/java/org/apache/hadoop/hive/metastore/hbase/HBaseStoreTestUtil.java b/itests/util/src/main/java/org/apache/hadoop/hive/metastore/hbase/HBaseStoreTestUtil.java
new file mode 100644
index 0000000..1f42007
--- /dev/null
+++ b/itests/util/src/main/java/org/apache/hadoop/hive/metastore/hbase/HBaseStoreTestUtil.java
@@ -0,0 +1,45 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.hadoop.hive.metastore.hbase;
+
+import java.util.List;
+
+import org.apache.hadoop.hbase.HColumnDescriptor;
+import org.apache.hadoop.hbase.HTableDescriptor;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.client.HBaseAdmin;
+import org.apache.hadoop.hive.conf.HiveConf;
+
+public class HBaseStoreTestUtil {
+  public static void initHBaseMetastore(HBaseAdmin admin, HiveConf conf) throws Exception {
+    for (String tableName : HBaseReadWrite.tableNames) {
+      List<byte[]> families = HBaseReadWrite.columnFamilies.get(tableName);
+      HTableDescriptor desc = new HTableDescriptor(TableName.valueOf(tableName));
+      for (byte[] family : families) {
+        HColumnDescriptor columnDesc = new HColumnDescriptor(family);
+        desc.addFamily(columnDesc);
+      }
+      admin.createTable(desc);
+    }
+    admin.close();
+    if (conf != null) {
+      HBaseReadWrite.getInstance(conf);
+    }
+  }
+}
\ No newline at end of file