This is an automated email from the ASF dual-hosted git repository.
twalthr 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 7f13429 [hotfix][table-api-java] Remove @Experimental from
useCatalog/useDatabase
7f13429 is described below
commit 7f13429dfa9c8525ff9f79790a45f719a61bcb7c
Author: Timo Walther <[email protected]>
AuthorDate: Mon Jan 6 13:29:48 2020 +0100
[hotfix][table-api-java] Remove @Experimental from useCatalog/useDatabase
---
.../src/main/java/org/apache/flink/table/api/TableEnvironment.java | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java
b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java
index 815994b..a2b5c94 100644
---
a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java
+++
b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java
@@ -18,7 +18,6 @@
package org.apache.flink.table.api;
-import org.apache.flink.annotation.Experimental;
import org.apache.flink.annotation.PublicEvolving;
import org.apache.flink.api.common.JobExecutionResult;
import org.apache.flink.api.common.typeinfo.TypeInformation;
@@ -623,7 +622,6 @@ public interface TableEnvironment {
* @param catalogName The name of the catalog to set as the current
default catalog.
* @see TableEnvironment#useDatabase(String)
*/
- @Experimental
void useCatalog(String catalogName);
/**
@@ -690,7 +688,6 @@ public interface TableEnvironment {
* @param databaseName The name of the database to set as the current
database.
* @see TableEnvironment#useCatalog(String)
*/
- @Experimental
void useDatabase(String databaseName);
/**