You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by bl...@apache.org on 2019/07/03 20:58:09 UTC

[flink] branch master updated: [hotfix][table] remove @PublicEvolving annotation from AbstractCatalog as it's not supported to be public

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2b1a125  [hotfix][table] remove @PublicEvolving annotation from AbstractCatalog as it's not supported to be public
2b1a125 is described below

commit 2b1a125ea7e95e7eae247064cdb4b55f1bd46118
Author: bowen.li <bo...@gmail.com>
AuthorDate: Wed Jul 3 11:05:22 2019 -0700

    [hotfix][table] remove @PublicEvolving annotation from AbstractCatalog as it's not supported to be public
    
    This PR removes @PublicEvolving annotation from AbstractCatalog. @PublicEvolving should be on the Catalog interface (which it already is), and marking AbstractCatalog as @PublicEvolving brings us extra burden on maintaining its compatibility.
    
    This closes #8975.
---
 .../src/main/java/org/apache/flink/table/catalog/AbstractCatalog.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/AbstractCatalog.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/AbstractCatalog.java
index 7f5707e..d1534dd 100644
--- a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/AbstractCatalog.java
+++ b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/AbstractCatalog.java
@@ -18,7 +18,6 @@
 
 package org.apache.flink.table.catalog;
 
-import org.apache.flink.annotation.PublicEvolving;
 import org.apache.flink.util.StringUtils;
 
 import static org.apache.flink.util.Preconditions.checkArgument;
@@ -26,7 +25,6 @@ import static org.apache.flink.util.Preconditions.checkArgument;
 /**
  * Abstract class for catalogs.
  */
-@PublicEvolving
 public abstract class AbstractCatalog implements Catalog {
 	private final String catalogName;
 	private final String defaultDatabase;