Skip to content

Commit

Permalink
Mention explicitly that unsignedInteger must not be larger than Long.…
Browse files Browse the repository at this point in the history
…MAX_VALUE. (#841) (#864)

Co-authored-by: Louise Söderström <[email protected]>
  • Loading branch information
JPryce-Aklundh and Lojjs authored Jan 24, 2024
1 parent 91ee68d commit 3e01f65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modules/ROOT/pages/patterns/reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,11 @@ upperBound ::= unsignedInteger
unsignedInteger ::= [0-9]+
----

[NOTE]
====
The `unsignedInteger` must not be larger than the Java constant `Long.MAX_VALUE` (2^63-1).
====

[[quantifiers-rules]]
=== Rules

Expand Down Expand Up @@ -1104,6 +1109,11 @@ upperBound ::= unsignedInteger
unsignedInteger ::= [0-9]+
----

[NOTE]
====
The `unsignedInteger` must not be larger than the Java constant `Long.MAX_VALUE` (2^63-1).
====

For rules on valid relationship variable names, see xref:syntax/naming.adoc[Cypher naming rules].

[[variable-length-relationships-rules]]
Expand Down

0 comments on commit 3e01f65

Please sign in to comment.