You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by pv...@apache.org on 2022/07/20 12:39:36 UTC

[iceberg] branch master updated: StreamingDelete constructor can be called by subclasses (#5271)

This is an automated email from the ASF dual-hosted git repository.

pvary pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 87f7ab0e51 StreamingDelete constructor can be called by subclasses (#5271)
87f7ab0e51 is described below

commit 87f7ab0e51b7175a356333b56c354fb9089bdd31
Author: Gustavo Torres <gu...@users.noreply.github.com>
AuthorDate: Wed Jul 20 08:39:31 2022 -0400

    StreamingDelete constructor can be called by subclasses (#5271)
---
 core/src/main/java/org/apache/iceberg/StreamingDelete.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/iceberg/StreamingDelete.java b/core/src/main/java/org/apache/iceberg/StreamingDelete.java
index 5e01d6b279..b1327d5d28 100644
--- a/core/src/main/java/org/apache/iceberg/StreamingDelete.java
+++ b/core/src/main/java/org/apache/iceberg/StreamingDelete.java
@@ -28,7 +28,7 @@ import org.apache.iceberg.expressions.Expression;
  * This implementation will attempt to commit 5 times before throwing {@link CommitFailedException}.
  */
 public class StreamingDelete extends MergingSnapshotProducer<DeleteFiles> implements DeleteFiles {
-  StreamingDelete(String tableName, TableOperations ops) {
+  protected StreamingDelete(String tableName, TableOperations ops) {
     super(tableName, ops);
   }