From 594c5a464a6c7b84beed858b43251773482fd06d Mon Sep 17 00:00:00 2001 From: Li Jin Date: Fri, 19 Oct 2018 11:10:54 -0400 Subject: [PATCH 1/2] Clarify the type of dictonary encoded field --- format/Schema.fbs | 1 + 1 file changed, 1 insertion(+) diff --git a/format/Schema.fbs b/format/Schema.fbs index 3d739342b83..4fa6a918607 100644 --- a/format/Schema.fbs +++ b/format/Schema.fbs @@ -252,6 +252,7 @@ table Field { // Name is not required, in i.e. a List name: string; nullable: bool; + // This is the type of the index if the field is dictionary encoded type: Type; // Present only if the field is dictionary encoded From 4c6ebb17f00ac128a04a2cbf002aab7c06270aca Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 23 Oct 2018 10:56:34 -0400 Subject: [PATCH 2/2] type should be decoded type --- format/Schema.fbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/Schema.fbs b/format/Schema.fbs index 4fa6a918607..9e52a8d5f9e 100644 --- a/format/Schema.fbs +++ b/format/Schema.fbs @@ -252,7 +252,7 @@ table Field { // Name is not required, in i.e. a List name: string; nullable: bool; - // This is the type of the index if the field is dictionary encoded + // This is the type of the decoded value if the field is dictionary encoded type: Type; // Present only if the field is dictionary encoded