From 93845c40105c0bfab4f5f0ddb820ead304909aa5 Mon Sep 17 00:00:00 2001 From: BingqingLyu Date: Tue, 4 Jun 2024 13:11:44 +0800 Subject: [PATCH] skip unsupported pattern test --- .../gremlin/integration/suite/pattern/PatternQueryTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/gremlin/integration/suite/pattern/PatternQueryTest.java b/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/gremlin/integration/suite/pattern/PatternQueryTest.java index d681f6cd9263..923f05d02d00 100644 --- a/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/gremlin/integration/suite/pattern/PatternQueryTest.java +++ b/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/gremlin/integration/suite/pattern/PatternQueryTest.java @@ -23,6 +23,7 @@ import org.apache.tinkerpop.gremlin.process.traversal.Traversal; import org.apache.tinkerpop.gremlin.structure.Vertex; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import java.util.Map; @@ -162,6 +163,7 @@ public void run_pattern_8_test() { Assert.assertEquals(1247146L, traversal.next().longValue()); } + @Ignore("Have not supported pattern with multi-edges yet") @Test public void run_pattern_9_test() { Traversal traversal = this.get_pattern_9_test();