Repository: sentry Updated Branches: refs/heads/master f1b8bf783 -> 604ed84c4
SENTRY-2127: Fix unstable unit test TestColumnEndToEnd.testCrossDbTableOperations (Na Li, reviewed by Sergio Pena) Project: http://git-wip-us.apache.org/repos/asf/sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/604ed84c Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/604ed84c Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/604ed84c Branch: refs/heads/master Commit: 604ed84c41442765d2b7f05feb9e544c9f3c758c Parents: f1b8bf7 Author: Sergio Pena <[email protected]> Authored: Fri Jan 26 09:37:31 2018 -0600 Committer: Sergio Pena <[email protected]> Committed: Fri Jan 26 09:37:31 2018 -0600 ---------------------------------------------------------------------- .../org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sentry/blob/604ed84c/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java ---------------------------------------------------------------------- diff --git a/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java b/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java index 8c15257..3881692 100644 --- a/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java +++ b/sentry-tests/sentry-tests-hive/src/test/java/org/apache/sentry/tests/e2e/dbprovider/TestColumnEndToEnd.java @@ -451,7 +451,7 @@ public class TestColumnEndToEnd extends AbstractTestWithStaticConfiguration { connection =context.createConnection(USER1_1); statement = context.createStatement(connection); statement.execute("use " + DB1); - statement.execute("CREATE table db_1.t1 as select tb1.id, tb3.val, tb2.num from db_1.tb1,db_2.tb3,db_2.tb2"); + statement.execute("CREATE table db_1.t1 as select tb1.id, tb2.num from db_1.tb1,db_2.tb2"); statement.close(); connection.close();
