Skip to content

Commit cfd0c82

Browse files
committed
added note/link to the implementation status page
1 parent 7dfd068 commit cfd0c82

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

Encodings.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,16 @@ used with any page type.
2727

2828
### Supported Encodings
2929

30-
| Encoding type | Encoding enum | Supported Types |
31-
| ------------------------------------------------ | --------------------------------------------------------- | ------------------------------------------------ |
32-
| [Plain](#PLAIN) | PLAIN = 0 | All Physical Types |
33-
| [Dictionary Encoding](#DICTIONARY) | PLAIN_DICTIONARY = 2 (Deprecated) <br> RLE_DICTIONARY = 8 | All Physical Types |
34-
| [Run Length Encoding / Bit-Packing Hybrid](#RLE) | RLE = 3 | BOOLEAN, Dictionary Indices |
35-
| [Delta Encoding](#DELTAENC) | DELTA_BINARY_PACKED = 5 | INT32, INT64 |
36-
| [Delta-length byte array](#DELTALENGTH) | DELTA_LENGTH_BYTE_ARRAY = 6 | BYTE_ARRAY |
37-
| [Delta Strings](#DELTASTRING) | DELTA_BYTE_ARRAY = 7 | BYTE_ARRAY, FIXED_LEN_BYTE_ARRAY |
30+
For details on current implementation status, see the [Implementation Status](https://parquet.apache.org/docs/file-format/implementationstatus/#encodings) page.
31+
32+
| Encoding type | Encoding enum | Supported Types |
33+
| ------------------------------------------------ | --------------------------------------------------------- | ------------------------------------------------- |
34+
| [Plain](#PLAIN) | PLAIN = 0 | All Physical Types |
35+
| [Dictionary Encoding](#DICTIONARY) | PLAIN_DICTIONARY = 2 (Deprecated) <br> RLE_DICTIONARY = 8 | All Physical Types |
36+
| [Run Length Encoding / Bit-Packing Hybrid](#RLE) | RLE = 3 | BOOLEAN, Dictionary Indices |
37+
| [Delta Encoding](#DELTAENC) | DELTA_BINARY_PACKED = 5 | INT32, INT64 |
38+
| [Delta-length byte array](#DELTALENGTH) | DELTA_LENGTH_BYTE_ARRAY = 6 | BYTE_ARRAY |
39+
| [Delta Strings](#DELTASTRING) | DELTA_BYTE_ARRAY = 7 | BYTE_ARRAY, FIXED_LEN_BYTE_ARRAY |
3840
| [Byte Stream Split](#BYTESTREAMSPLIT) | BYTE_STREAM_SPLIT = 9 | INT32, INT64, FLOAT, DOUBLE, FIXED_LEN_BYTE_ARRAY |
3941

4042
### Deprecated Encodings

0 commit comments

Comments
 (0)