Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.9.1
-
None
Description
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.