You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sentry.apache.org by br...@apache.org on 2014/02/25 03:52:51 UTC

[08/26] git commit: SENTRY-85: The JDBC connection from hive test framework should use a userid that's supported by default test resource (Prasad Mujumdar via Shreepadma Venugopalan)

SENTRY-85: The JDBC connection from hive test framework should use a userid that's supported by default test resource (Prasad Mujumdar via Shreepadma Venugopalan)


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

Branch: refs/heads/db_policy_store
Commit: c5ff1c3faa61344c89bea15b6babf9574637a434
Parents: ee9565f
Author: Shreepadma Venugopalan <sh...@apache.org>
Authored: Thu Jan 9 16:14:28 2014 -0800
Committer: Shreepadma Venugopalan <sh...@apache.org>
Committed: Thu Jan 9 16:14:28 2014 -0800

----------------------------------------------------------------------
 .../sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/c5ff1c3f/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java
----------------------------------------------------------------------
diff --git a/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java b/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java
index badd523..be6eafc 100644
--- a/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java
+++ b/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/hive/hiveserver/AbstractHiveServer.java
@@ -76,7 +76,7 @@ public abstract class AbstractHiveServer implements HiveServer {
       }
       try {
         DriverManager.setLoginTimeout(30);
-        Connection connection =  DriverManager.getConnection(hiveServer.getURL(), "hive", "bar");
+        Connection connection =  DriverManager.getConnection(hiveServer.getURL(), "foo", "bar");
         connection.close();
         break;
       } catch (SQLException e) {