You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2016/11/28 21:23:09 UTC

[1/2] hive git commit: HIVE-15295: Fix HCatalog javadoc generation with Java 8 (Jesus Camacho Rodriguez, reviewed by Sergio Peña)

Repository: hive
Updated Branches:
  refs/heads/branch-2.1 abab282c2 -> 78ab72e74


HIVE-15295: Fix HCatalog javadoc generation with Java 8 (Jesus Camacho Rodriguez, reviewed by Sergio Pe�a)


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

Branch: refs/heads/branch-2.1
Commit: 09929532c5879c0c4cf3c960373fbdf94df4f075
Parents: abab282
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Mon Nov 28 20:47:45 2016 +0000
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Mon Nov 28 21:20:17 2016 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/hive/hcatalog/templeton/Server.java | 8 ++++----
 .../hive/hcatalog/templeton/tool/TempletonStorage.java       | 2 +-
 .../hive/hcatalog/templeton/tool/ZooKeeperCleanup.java       | 4 ----
 3 files changed, 5 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/09929532/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/Server.java
----------------------------------------------------------------------
diff --git a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/Server.java b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/Server.java
index a94b8e9..77c8610 100644
--- a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/Server.java
+++ b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/Server.java
@@ -923,16 +923,16 @@ public class Server {
    * 1. curl -s 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan'
    * Return all the Job IDs submitted by hsubramaniyan
    * 2. curl -s
-   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan&showall=true'
+   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan%26showall=true'
    * Return all the Job IDs that are visible to hsubramaniyan
    * 3. curl -s
-   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan&jobid=job_201312091733_0003'
+   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan%26jobid=job_201312091733_0003'
    * Return all the Job IDs for hsubramaniyan after job_201312091733_0003.
    * 4. curl -s 'http://localhost:50111/templeton/v1/jobs?
-   * user.name=hsubramaniyan&jobid=job_201312091733_0003&numrecords=5'
+   * user.name=hsubramaniyan%26jobid=job_201312091733_0003%26numrecords=5'
    * Return the first 5(atmost) Job IDs submitted by hsubramaniyan after job_201312091733_0003.
    * 5.  curl -s
-   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan&numrecords=5'
+   * 'http://localhost:50111/templeton/v1/jobs?user.name=hsubramaniyan%26numrecords=5'
    * Return the first 5(atmost) Job IDs submitted by hsubramaniyan after sorting the Job ID list
    * lexicographically.
    * </p>

http://git-wip-us.apache.org/repos/asf/hive/blob/09929532/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/TempletonStorage.java
----------------------------------------------------------------------
diff --git a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/TempletonStorage.java b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/TempletonStorage.java
index cf27ffa..4bd73d9 100644
--- a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/TempletonStorage.java
+++ b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/TempletonStorage.java
@@ -93,7 +93,7 @@ public interface TempletonStorage {
    * Get the id of each data grouping of a given type in the storage
    * system.
    * @param type The data type (as listed above)
-   * @return An ArrayList<String> of ids.
+   * @return A list of ids.
    */
   public List<String> getAllForType(Type type);
 

http://git-wip-us.apache.org/repos/asf/hive/blob/09929532/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/ZooKeeperCleanup.java
----------------------------------------------------------------------
diff --git a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/ZooKeeperCleanup.java b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/ZooKeeperCleanup.java
index 1900761..9e2a461 100644
--- a/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/ZooKeeperCleanup.java
+++ b/hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/tool/ZooKeeperCleanup.java
@@ -85,8 +85,6 @@ public class ZooKeeperCleanup extends Thread {
 
   /**
    * Run the cleanup loop.
-   *
-   * @throws IOException
    */
   public void run() {
     CuratorFramework zk = null;
@@ -131,8 +129,6 @@ public class ZooKeeperCleanup extends Thread {
 
   /**
    * Get the list of jobs from JobState
-   *
-   * @throws IOException
    */
   public List<String> getChildList(CuratorFramework zk) {
     try {


[2/2] hive git commit: Release notes 2.1.1 (addendum)

Posted by jc...@apache.org.
Release notes 2.1.1 (addendum)


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

Branch: refs/heads/branch-2.1
Commit: 78ab72e7406cbaa50de864501bc2ba5813573a5d
Parents: 0992953
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Mon Nov 28 21:21:52 2016 +0000
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Mon Nov 28 21:21:52 2016 +0000

----------------------------------------------------------------------
 RELEASE_NOTES.txt | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/78ab72e7/RELEASE_NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 6a05047..1111e2d 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -207,6 +207,7 @@ Release Notes - Hive - Version 2.1.1
     * [HIVE-15123] - LLAP UI: The UI should work even if the cache is disabled
     * [HIVE-15137] - metastore add partitions background thread should use current username
     * [HIVE-15181] - buildQueryWithINClause didn't properly handle multiples of ConfVars.METASTORE_DIRECT_SQL_MAX_ELEMENTS_IN_CLAUSE
+    * [HIVE-15295] - Fix HCatalog javadoc generation with Java 8