This is an automated email from the ASF dual-hosted git repository.
jin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
The following commit(s) were added to refs/heads/master by this push:
new 4346b44f8 fix: TinkerPop unit test lack some lables (#2387)
4346b44f8 is described below
commit 4346b44f80b316eb9cb1aa5babafc90dfc71f2b1
Author: vaughn <[email protected]>
AuthorDate: Thu Dec 14 17:59:31 2023 +0800
fix: TinkerPop unit test lack some lables (#2387)
---
.../src/main/java/org/apache/hugegraph/tinkerpop/TestGraph.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/hugegraph-server/hugegraph-test/src/main/java/org/apache/hugegraph/tinkerpop/TestGraph.java
b/hugegraph-server/hugegraph-test/src/main/java/org/apache/hugegraph/tinkerpop/TestGraph.java
index 415e80462..f5c1ac7fb 100644
---
a/hugegraph-server/hugegraph-test/src/main/java/org/apache/hugegraph/tinkerpop/TestGraph.java
+++
b/hugegraph-server/hugegraph-test/src/main/java/org/apache/hugegraph/tinkerpop/TestGraph.java
@@ -874,6 +874,10 @@ public class TestGraph implements Graph {
schema.indexLabel("bTOcByGremlinPartition").onE("bTOc")
.by("gremlin.partitionGraphStrategy.partition")
.ifNotExist().create();
+ schema.edgeLabel("blah1").link(defaultVL, defaultVL)
+ .ifNotExist().create();
+ schema.edgeLabel("blah2").link(defaultVL, defaultVL)
+ .ifNotExist().create();
}
public void initEdgeLabelDefaultKnowsDefault(String defaultVL) {