You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2016/12/23 01:46:40 UTC

[11/50] [abbrv] incubator-atlas git commit: ATLAS-1105 Disable HiveLiteralRewriterTest since its not used currently (sumasai)

ATLAS-1105 Disable HiveLiteralRewriterTest since its not used currently (sumasai)

(cherry picked from commit 2a7c4326cd6160b3e54c53b34399f96a4db8723f)


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

Branch: refs/heads/0.7-incubating
Commit: 368a2f903210270431ac3c9ef7acf866289f9846
Parents: 1340bfc
Author: Suma Shivaprasad <su...@gmail.com>
Authored: Mon Aug 8 14:13:45 2016 -0700
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Thu Dec 22 15:05:02 2016 -0800

----------------------------------------------------------------------
 .../org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java   | 5 +++--
 release-log.txt                                                 | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/368a2f90/addons/hive-bridge/src/test/java/org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java
----------------------------------------------------------------------
diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java
index 2840457..f4abfb6 100644
--- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java
+++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/bridge/HiveLiteralRewriterTest.java
@@ -26,11 +26,12 @@ import org.testng.Assert;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.Test;
 
+@Test(enabled = false)
 public class HiveLiteralRewriterTest {
 
     private HiveConf conf;
 
-    @BeforeClass
+    @BeforeClass(enabled = false)
     public void setup() {
         conf = new HiveConf();
         conf.addResource("/hive-site.xml");
@@ -39,7 +40,7 @@ public class HiveLiteralRewriterTest {
         conf.set("hive.lock.manager", "org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager");
     }
 
-    @Test
+    @Test(enabled=false)
     public void testLiteralRewrite() throws RewriteException {
         HiveHook.HiveEventContext ctx = new HiveHook.HiveEventContext();
         ctx.setQueryStr("insert into table testTable partition(dt='2014-01-01') select * from test1 where dt = '2014-01-01'" +

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/368a2f90/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index d61da6d..b18a8a5 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -28,6 +28,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
 ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
 
 ALL CHANGES:
+ATLAS-1105 Disable HiveLiteralRewriterTest since its not used currently (sumasai)
 ATLAS-1103 : UI: Search type list is not refreshed (Kalyanikashikar via sumasai)
 ATLAS-1099 UI : multiple tag assign button hides wrongly (Kalyanikashikar via sumasai)
 ATLAS-1087 Provide an option to turn off persisting entity definition in audits (sumasai, shwethags)