Skip to content

Commit

Permalink
fix: TinkerPop unit test lack some lables (apache#2387)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxxoo authored and VGalaxies committed Jan 12, 2024
1 parent 6074acf commit 3a0bf21
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,10 @@ private void initBasicVertexLabelAndEdgeLabelExceptV(String defaultVL) {
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) {
Expand Down

0 comments on commit 3a0bf21

Please sign in to comment.