Skip to content

Commit

Permalink
Removing VariableSizeListType
Browse files Browse the repository at this point in the history
  • Loading branch information
rok committed Jun 24, 2024
1 parent 83481f6 commit 471efc3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions LogicalTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,6 @@ elements of the same primitive data type.

The sort order used for `FIXED_SIZE_LIST` is undefined.

### VARIABLE_SIZE_LIST

The `VARIABLE_SIZE_LIST` annotation represents a variable-size list of elements
of a primitive data type. It must annotate a `BYTE_ARRAY` primitive type.

The `BYTE_ARRAY` data is interpreted as a variable size sequence of elements of
the same primitive data type.

## Temporal Types

### DATE
Expand Down
4 changes: 0 additions & 4 deletions src/main/thrift/parquet.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,6 @@ struct FixedSizeListType { // allowed for FIXED_LEN_BYTE_ARRAY[num_values
1: required Type type; // see LogicalTypes.md
2: required i32 num_values;
}
struct VariableSizeListType { // allowed for BYTE_ARRAY, see LogicalTypes.md
1: required Type type;
}

/**
* Logical type to annotate a column that is always null.
Expand Down Expand Up @@ -412,7 +409,6 @@ union LogicalType {
15: Float16Type FLOAT16 // no compatible ConvertedType
// 16: reserved for GEOMETRY
17: FixedSizeListType FIXED_SIZE_LIST // no compatible ConvertedType
18: VariableSizeListType VARIABLE_SIZE_LIST // no compatible ConvertedType
}

/**
Expand Down

0 comments on commit 471efc3

Please sign in to comment.