forked from apache/parquet-java
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PARQUET-2292: Improve default SpecificRecord model selection for Avro…
…{Write,Read}Support (apache#1091) This commit contains following patches: * PARQUET-2265: Don't set default Model in AvroParquetWriter (apache#1049) - Don't set default Model in AvroParquetWriter - Test that data model is parsed from Configuration * PARQUET-2292: Default SpecificRecord model reflects from MODEL$ field (apache#1078)
- Loading branch information
1 parent
bc5b658
commit 5b62b43
Showing
10 changed files
with
491 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "record", | ||
"name": "LogicalTypesTest", | ||
"namespace": "org.apache.parquet.avro", | ||
"doc": "Record for testing logical types", | ||
"fields": [ | ||
{ | ||
"name": "timestamp", | ||
"type": { | ||
"type": "long", "logicalType": "timestamp-millis" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.