-
Type:
Improvement
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.9.1
-
Fix Version/s: 1.10.0
-
Component/s: parquet-avro
-
Labels:None
The ParquetWriter got a new Builder(OutputFile).
But it cannot be used by the AvroParquetWriter as there is no matching Builder/Constructor.
Changes are quite simple:
public static <T> Builder<T> builder(OutputFile file)
{ return new Builder<T>(file) }and in the static Builder class below
private Builder(OutputFile file)
{ super(file); }Note: I am not good enough with builds, maven and git to create a pull request yet. Sorry. Will try to get better here.