Skip to content

Commit

Permalink
fix: datumkind size (apache#994)
Browse files Browse the repository at this point in the history
## Rationale


## Detailed Changes


## Test Plan
  • Loading branch information
zouxiang1993 authored and dust1 committed Aug 9, 2023
1 parent dc8aca5 commit 174f3ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common_types/src/datum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ impl DatumKind {
DatumKind::UInt8 => 1,
DatumKind::Int64 => 8,
DatumKind::Int32 => 4,
DatumKind::Int16 => 8,
DatumKind::Int8 => 8,
DatumKind::Int16 => 2,
DatumKind::Int8 => 1,
DatumKind::Boolean => 1,
DatumKind::Date => 4,
DatumKind::Time => 8,
Expand Down

0 comments on commit 174f3ce

Please sign in to comment.