Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions VariantEncoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,12 @@ Similarly, user expressions operating on an *int8* value of 1 should behave the

*Decimal table*

| Decimal Precision | Decimal value type |
|-----------------------|--------------------|
| 1 <= precision <= 9 | int32 |
| 10 <= precision <= 18 | int64 |
| 18 <= precision <= 38 | int128 |
| > 38 | Not supported |
| Decimal Precision | Decimal value type | Variant Physical Type |
|-----------------------|--------------------|-----------------------|
| 1 <= precision <= 9 | int32 | decimal4 |
| 10 <= precision <= 18 | int64 | decimal8 |
| 19 <= precision <= 38 | int128 | decimal16 |
| > 38 | Not supported | |

## String values must be UTF-8 encoded

Expand Down