You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by em...@apache.org on 2022/12/08 05:38:39 UTC

[parquet-format] branch master updated: Fix typo under "Unsigned Integers" (#182)

This is an automated email from the ASF dual-hosted git repository.

emkornfield pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git


The following commit(s) were added to refs/heads/master by this push:
     new 4dddc37  Fix typo under "Unsigned Integers" (#182)
4dddc37 is described below

commit 4dddc37c2d9cc991e27024792d1154af6f335e1c
Author: Mark Roberts <ma...@gmail.com>
AuthorDate: Thu Dec 8 00:38:32 2022 -0500

    Fix typo under "Unsigned Integers" (#182)
    
    I'm pretty sure that, under "Unsigned Integers", we should say
    
    > …and `INT(64, false)` must annotate…
    
    rather than
    
    > …and `INT(64, true)` must annotate…
---
 LogicalTypes.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/LogicalTypes.md b/LogicalTypes.md
index b860ea5..8ea3bfe 100644
--- a/LogicalTypes.md
+++ b/LogicalTypes.md
@@ -129,7 +129,7 @@ Implementations must not write values that are larger than the annotation
 allows.
 
 `INT(8, false)`, `INT(16, false)`, and `INT(32, false)` must annotate an `int32` primitive type and
-`INT(64, true)` must annotate an `int64` primitive type.
+`INT(64, false)` must annotate an `int64` primitive type.
 
 The sort order used for unsigned integer types is unsigned.