You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by li...@apache.org on 2017/08/02 09:13:25 UTC

hive git commit: HIVE-17177: move TestSuite.java to the right position (Saijin Huang via Rui)

Repository: hive
Updated Branches:
  refs/heads/master 6565387e6 -> 8fff08270


HIVE-17177: move TestSuite.java to the right position (Saijin Huang via Rui)


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

Branch: refs/heads/master
Commit: 8fff082705de85c13656beede342dcfe1fe9f193
Parents: 6565387
Author: Saijin Huang <hu...@zte.com.cn>
Authored: Wed Aug 2 17:13:20 2017 +0800
Committer: Rui Li <li...@apache.org>
Committed: Wed Aug 2 17:13:20 2017 +0800

----------------------------------------------------------------------
 .../src/test/java/org/apache/TestSuite.java     | 29 --------------------
 .../org/apache/hive/storage/jdbc/TestSuite.java | 29 ++++++++++++++++++++
 2 files changed, 29 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/8fff0827/jdbc-handler/src/test/java/org/apache/TestSuite.java
----------------------------------------------------------------------
diff --git a/jdbc-handler/src/test/java/org/apache/TestSuite.java b/jdbc-handler/src/test/java/org/apache/TestSuite.java
deleted file mode 100644
index df8eab7..0000000
--- a/jdbc-handler/src/test/java/org/apache/TestSuite.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- *
- * Licensed 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.hive.storage.jdbc;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-
-import org.apache.hive.config.JdbcStorageConfigManagerTest;
-import org.apache.hive.storage.jdbc.QueryConditionBuilderTest;
-import org.apache.hive.storage.jdbc.dao.GenericJdbcDatabaseAccessorTest;
-
-@RunWith(Suite.class)
-@SuiteClasses({ JdbcStorageConfigManagerTest.class, GenericJdbcDatabaseAccessorTest.class,
-        QueryConditionBuilderTest.class })
-public class TestSuite {
-}

http://git-wip-us.apache.org/repos/asf/hive/blob/8fff0827/jdbc-handler/src/test/java/org/apache/hive/storage/jdbc/TestSuite.java
----------------------------------------------------------------------
diff --git a/jdbc-handler/src/test/java/org/apache/hive/storage/jdbc/TestSuite.java b/jdbc-handler/src/test/java/org/apache/hive/storage/jdbc/TestSuite.java
new file mode 100644
index 0000000..df8eab7
--- /dev/null
+++ b/jdbc-handler/src/test/java/org/apache/hive/storage/jdbc/TestSuite.java
@@ -0,0 +1,29 @@
+/*
+ *
+ * Licensed 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.hive.storage.jdbc;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+import org.apache.hive.config.JdbcStorageConfigManagerTest;
+import org.apache.hive.storage.jdbc.QueryConditionBuilderTest;
+import org.apache.hive.storage.jdbc.dao.GenericJdbcDatabaseAccessorTest;
+
+@RunWith(Suite.class)
+@SuiteClasses({ JdbcStorageConfigManagerTest.class, GenericJdbcDatabaseAccessorTest.class,
+        QueryConditionBuilderTest.class })
+public class TestSuite {
+}