This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 93f8f18 Return FileAppender from Avro.WriteBuilder, not a
package-private implementation. (#27)
93f8f18 is described below
commit 93f8f18f23d4f40a4b2c67c18ee482878c534a53
Author: Ratandeep Ratti <[email protected]>
AuthorDate: Thu Dec 6 09:49:59 2018 -0800
Return FileAppender from Avro.WriteBuilder, not a package-private
implementation. (#27)
---
core/src/main/java/com/netflix/iceberg/avro/Avro.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/core/src/main/java/com/netflix/iceberg/avro/Avro.java
b/core/src/main/java/com/netflix/iceberg/avro/Avro.java
index b08b5ff..921321c 100644
--- a/core/src/main/java/com/netflix/iceberg/avro/Avro.java
+++ b/core/src/main/java/com/netflix/iceberg/avro/Avro.java
@@ -22,6 +22,7 @@ package com.netflix.iceberg.avro;
import com.google.common.base.Preconditions;
import com.google.common.collect.Maps;
import com.netflix.iceberg.SchemaParser;
+import com.netflix.iceberg.io.FileAppender;
import com.netflix.iceberg.io.InputFile;
import com.netflix.iceberg.io.OutputFile;
import org.apache.avro.Conversions;
@@ -131,7 +132,7 @@ public class Avro {
}
}
- public <D> AvroFileAppender<D> build() throws IOException {
+ public <D> FileAppender<D> build() throws IOException {
Preconditions.checkNotNull(schema, "Schema is required");
Preconditions.checkNotNull(name, "Table name is required and cannot be
null");