Repository: incubator-atlas Updated Branches: refs/heads/master beb5a0997 -> 2a7c4326c
ATLAS-1105 Disable HiveLiteralRewriterTest since its not used currently (sumasai) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/2a7c4326 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/2a7c4326 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/2a7c4326 Branch: refs/heads/master Commit: 2a7c4326cd6160b3e54c53b34399f96a4db8723f Parents: beb5a09 Author: Suma Shivaprasad <[email protected]> Authored: Mon Aug 8 14:13:45 2016 -0700 Committer: Suma Shivaprasad <[email protected]> Committed: Mon Aug 8 14:13:45 2016 -0700 ---------------------------------------------------------------------- .../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/2a7c4326/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/2a7c4326/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index e6b77e1..f1c98a2 100644 --- a/release-log.txt +++ b/release-log.txt @@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES: ATLAS-1060 Add composite indexes for exact match performance improvements for all attributes (sumasai 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-693 Titan 0.5.4 implementation of the graph db abstraction {jnhagelb via dkantor) ATLAS-1099 UI : multiple tag assign button hides wrongly (Kalyanikashikar via sumasai)
