-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Boolean encoding and RLEBitPackedHybrid (#704)
- Loading branch information
1 parent
e4239e8
commit 167cc76
Showing
11 changed files
with
129 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/lib/parquet/src/Flow/Parquet/ParquetFile/Schema/ConvertedType.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Flow\Parquet\ParquetFile\Schema; | ||
|
||
enum ConvertedType : int | ||
{ | ||
case BSON = 20; | ||
case DATE = 6; | ||
case DECIMAL = 5; | ||
case ENUM = 4; | ||
case INT_16 = 16; | ||
case INT_32 = 17; | ||
case INT_64 = 18; | ||
case INT_8 = 15; | ||
case INTERVAL = 21; | ||
case JSON = 19; | ||
case LIST = 3; | ||
case MAP = 1; | ||
case MAP_KEY_VALUE = 2; | ||
case TIME_MICROS = 8; | ||
case TIME_MILLIS = 7; | ||
case TIMESTAMP_MICROS = 10; | ||
case TIMESTAMP_MILLIS = 9; | ||
case UINT_16 = 12; | ||
case UINT_32 = 13; | ||
case UINT_64 = 14; | ||
case UINT_8 = 11; | ||
case UTF8 = 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.