From 797f7acd00c73513906660895e2a0fb35dbb1f21 Mon Sep 17 00:00:00 2001 From: azeng Date: Wed, 30 Oct 2024 21:45:46 -0700 Subject: [PATCH] update doc for INT and LONG type, making them consistent with src code comments; --- docs/data-modeling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data-modeling.md b/docs/data-modeling.md index 780ab3f1a3..e36ec894ff 100644 --- a/docs/data-modeling.md +++ b/docs/data-modeling.md @@ -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`