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

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 65d74f1b5a3 Fix illustration for dict encoding in row format (#616)
65d74f1b5a3 is described below

commit 65d74f1b5a33f93bbc0878443e61345a1b7ea9b1
Author: Jay Han <[email protected]>
AuthorDate: Sat Mar 8 20:34:02 2025 +0800

    Fix illustration for dict encoding in row format (#616)
    
    As mentioned in the previous
    
[comment](https://github.com/apache/arrow-rs/issues/4639#issuecomment-2705901229),
    the dictionary encoding example contains inaccuracies.
---
 _posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-2.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-2.md 
b/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-2.md
index 5bc4b0b39f9..3315bb545c2 100644
--- a/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-2.md
+++ b/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-2.md
@@ -212,7 +212,7 @@ A null value is encoded as a single `0x00` byte, and a 
non-null value encoded as
 
 ```
                           ┌─────┬─────┬─────┬─────┐
-   "Fabulous"             │ 01  │ 03  │ 05  │ 00  │
+   "Fabulous"             │ 01  │ 01  │ 02  │ 00  │
                           └─────┴─────┴─────┴─────┘
 
                           ┌─────┬─────┬─────┐

Reply via email to