forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix](Outfile) Fix the data type mapping for complex types in Doris t…
…o the ORC and Parquet file formats. (apache#44041) ### What problem does this PR solve? Problem Summary: As before, the behavior of exporting of complex data types in Doris is as follows: | orc type | parquet type | csv -- | -- | -- | -- bitmap | string | Not Supported | Not Supported quantile_state | Not Supported | Not Supported | Not Supported hll | string | string | invisible string jsonb | Not Supported | string | string variant | Not Supported | string | string What's more, there are some issues when exporting complex data types to the ORC file format. This PR does two things: 1. Fix the problem with exporting complex data types from Doris. 2. Support exporting these three complex types to both the ORC and the Parquet file format. | orc type | parquet type | csv -- | -- | -- | -- bitmap | binary | binary | "NULL" quantile_state | binary | binary | "NULL" hll | binary | binary | "NULL" jsonb | string | string | string variant | string | string | string ### Release note [fix](Outfile) Fix the data type mapping for complex types in Doris to the ORC and Parquet file formats.
- Loading branch information
Showing
17 changed files
with
501 additions
and
132 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
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.