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

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


The following commit(s) were added to refs/heads/main by this push:
     new 54d7341bd7 Core: Make reporter() public so that it can be accessed by 
Trino for BaseTable creation (#12519)
54d7341bd7 is described below

commit 54d7341bd7f4b816a8aacc7c4c3a99ee2dbc1ee7
Author: Pucheng Yang <[email protected]>
AuthorDate: Fri Mar 14 01:04:07 2025 -0700

    Core: Make reporter() public so that it can be accessed by Trino for 
BaseTable creation (#12519)
---
 core/src/main/java/org/apache/iceberg/BaseTable.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/iceberg/BaseTable.java 
b/core/src/main/java/org/apache/iceberg/BaseTable.java
index a44adc4e90..30935e2d1b 100644
--- a/core/src/main/java/org/apache/iceberg/BaseTable.java
+++ b/core/src/main/java/org/apache/iceberg/BaseTable.java
@@ -54,7 +54,7 @@ public class BaseTable implements Table, HasTableOperations, 
Serializable {
     this.reporter = reporter;
   }
 
-  MetricsReporter reporter() {
+  public MetricsReporter reporter() {
     return reporter;
   }
 

Reply via email to