You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2021/01/16 14:17:38 UTC

[zeppelin] branch master updated: [ZEPPELIN-5190] flink-1.12-shims CollectStreamTableSink package name is not correct

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6f0b8bd  [ZEPPELIN-5190] flink-1.12-shims CollectStreamTableSink package name is not correct
6f0b8bd is described below

commit 6f0b8bd262b87649dd38de5437d92662ae9b706f
Author: feibabm <pe...@hotmail.com>
AuthorDate: Mon Jan 11 13:06:08 2021 +0800

    [ZEPPELIN-5190] flink-1.12-shims CollectStreamTableSink package name is not correct
    
    ### What is this PR for?
    fix bug: flink-1.12-shims CollectStreamTableSink package name is not correct
    
    ### What type of PR is it?
    [Bug Fix]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5190
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update?No
    * Is there breaking changes for older versions?No
    * Does this needs documentation?No
    
    Author: feibabm <pe...@hotmail.com>
    
    Closes #4017 from feibabm/master and squashes the following commits:
    
    7a088427c [feibabm] fix package name
---
 .../src/main/java/org/apache/zeppelin/flink/Flink112Shims.java          | 2 +-
 .../java/org/apache/zeppelin/flink/shims112/CollectStreamTableSink.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/Flink112Shims.java b/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/Flink112Shims.java
index dc5a4db..95f457d 100644
--- a/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/Flink112Shims.java
+++ b/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/Flink112Shims.java
@@ -82,7 +82,7 @@ import org.apache.flink.table.sinks.TableSink;
 import org.apache.flink.types.Row;
 import org.apache.flink.types.RowKind;
 import org.apache.flink.util.FlinkException;
-import org.apache.zeppelin.flink.shims111.CollectStreamTableSink;
+import org.apache.zeppelin.flink.shims112.CollectStreamTableSink;
 import org.apache.zeppelin.flink.shims112.Flink112ScalaShims;
 import org.apache.zeppelin.flink.sql.SqlCommandParser;
 import org.apache.zeppelin.flink.sql.SqlCommandParser.SqlCommand;
diff --git a/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/shims112/CollectStreamTableSink.java b/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/shims112/CollectStreamTableSink.java
index b98f406..3650254 100644
--- a/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/shims112/CollectStreamTableSink.java
+++ b/flink/flink1.12-shims/src/main/java/org/apache/zeppelin/flink/shims112/CollectStreamTableSink.java
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package org.apache.zeppelin.flink.shims111;
+package org.apache.zeppelin.flink.shims112;
 
 import org.apache.flink.api.common.typeinfo.TypeInformation;
 import org.apache.flink.api.common.typeinfo.Types;