fix: TinkerPop unit test lack some lables (#2387)

This commit is contained in:
vaughn 2023-12-14 17:59:31 +08:00 committed by GitHub
parent 2c6fcdc719
commit 4346b44f80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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) {