Skip to content

Commit 519dcc7

Browse files
Correct max label id (#1176) (#1179)
2^32 labels has never actually been supported, anything over 2^31 would fail with an integer overflow. Cherry-picked from #1176 Co-authored-by: emmaholmbergohlsson <[email protected]>
1 parent 5849e8f commit 519dcc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-store-info.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ The store formats are:
202202
| `2^36` (68 719 476 736)
203203

204204
| Labels
205-
| `2^32` (4 294 967 296)
205+
| `2^31` (2 147 483 648)
206206

207207
| Relationship types
208208
| `2^16` (65 536)
@@ -262,7 +262,7 @@ The store formats are:
262262
| `2^36` (68 719 476 736)
263263

264264
| Labels
265-
| `2^32` (4 294 967 296)
265+
| `2^31` (2 147 483 648)
266266

267267
| Relationship types
268268
| `2^16` (65 536)
@@ -342,7 +342,7 @@ The store formats are:
342342
| `2^50` (1 Quadrillion)
343343

344344
| Labels
345-
| `2^32` (4 294 967 296)
345+
| `2^31` (2 147 483 648)
346346

347347
| Relationship types
348348
| `2^24` (16 777 216)

0 commit comments

Comments
 (0)