Commit 2a7c4326 by Suma Shivaprasad

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

parent beb5a099
...@@ -26,11 +26,12 @@ import org.testng.Assert; ...@@ -26,11 +26,12 @@ import org.testng.Assert;
import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test; import org.testng.annotations.Test;
@Test(enabled = false)
public class HiveLiteralRewriterTest { public class HiveLiteralRewriterTest {
private HiveConf conf; private HiveConf conf;
@BeforeClass @BeforeClass(enabled = false)
public void setup() { public void setup() {
conf = new HiveConf(); conf = new HiveConf();
conf.addResource("/hive-site.xml"); conf.addResource("/hive-site.xml");
...@@ -39,7 +40,7 @@ public class HiveLiteralRewriterTest { ...@@ -39,7 +40,7 @@ public class HiveLiteralRewriterTest {
conf.set("hive.lock.manager", "org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager"); conf.set("hive.lock.manager", "org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager");
} }
@Test @Test(enabled=false)
public void testLiteralRewrite() throws RewriteException { public void testLiteralRewrite() throws RewriteException {
HiveHook.HiveEventContext ctx = new HiveHook.HiveEventContext(); 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'" + ctx.setQueryStr("insert into table testTable partition(dt='2014-01-01') select * from test1 where dt = '2014-01-01'" +
......
...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES: ...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES:
ATLAS-1060 Add composite indexes for exact match performance improvements for all attributes (sumasai via shwethags) ATLAS-1060 Add composite indexes for exact match performance improvements for all attributes (sumasai via shwethags)
ALL CHANGES: 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-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-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) ATLAS-1099 UI : multiple tag assign button hides wrongly (Kalyanikashikar via sumasai)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment