Skip to content

Commit

Permalink
update doc for INT and LONG type, making them consistent with src cod…
Browse files Browse the repository at this point in the history
…e comments;
  • Loading branch information
azeng-netflix committed Oct 31, 2024
1 parent 6e7ee46 commit 797f7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/data-modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Each schema field has a _field name_, which will default to the same name as the

The possible field types are:

* `INT`: An integer value up to 32-bits
* `LONG`: An integer value up to 64-bits
* `INT`: An integer value up to 32-bits. Integer.MIN_VALUE is reserved for a sentinel value indicating null.
* `LONG`: An integer value up to 64-bits. Long.MIN_VALUE is reserved for a sentinel value indicating null.
* `FLOAT`: A 32-bit floating-point value
* `DOUBLE`: A 64-bit floating-point value
* `BOOLEAN`: `true` or `false`
Expand Down

0 comments on commit 797f7ac

Please sign in to comment.