TableEnvironment,StreamTableEnvironment ,BatchTableEnvironment引入的Maven依赖

TableEnvironment,StreamTableEnvironment ,BatchTableEnvironment需要引入如下依赖至pom.xml中:

<!-- java版 -->
<dependency>
  <groupId>org.apache.flink</groupId>
  <artifactId>flink-table-api-java-bridge_2.11</artifactId>
  <version>1.10.0</version>
  <scope>provided</scope>
</dependency>
<!-- scala版 -->
<dependency>
  <groupId>org.apache.flink</groupId>
  <artifactId>flink-table-api-scala-bridge_2.11</artifactId>
  <version>1.10.0</version>
  <scope>provided</scope>
</dependency>

 

正在加载评论...