We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea2914 commit d8fd9daCopy full SHA for d8fd9da
neo4j-adapter/src/main/java/org/neo4j/gds/compat/Neo4jVersion.java
@@ -30,7 +30,8 @@ public enum Neo4jVersion {
30
V_4_4,
31
V_5_1,
32
V_5_2,
33
- V_5_3;
+ V_5_3,
34
+ V_RC;
35
36
@Override
37
public String toString() {
@@ -43,6 +44,8 @@ public String toString() {
43
44
return "5.2";
45
case V_5_3:
46
return "5.3";
47
+ case V_RC:
48
+ return "RC";
49
default:
50
throw new IllegalArgumentException("Unexpected value: " + this.name() + " (sad java 😞)");
51
}
@@ -115,6 +118,8 @@ static Neo4jVersion parse(String version) {
115
118
return Neo4jVersion.V_5_2;
116
119
} else if (minorVersion == 3) {
117
120
return Neo4jVersion.V_5_3;
121
+ } else if (minorVersion == 4) {
122
+ return Neo4jVersion.V_RC;
123
124
125
0 commit comments