You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Dawid Wysakowicz (Jira)" <ji...@apache.org> on 2020/12/03 15:46:00 UTC

[jira] [Closed] (FLINK-20464) Some Table examples are not built correctly

     [ https://issues.apache.org/jira/browse/FLINK-20464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dawid Wysakowicz closed FLINK-20464.
------------------------------------
    Fix Version/s:     (was: 1.12.0)
                   1.12.1
       Resolution: Fixed

Fixed in:
* master
** e10e548feb2bedf54c3863bbd49ed4f9140546cf
* 1.12
** 2ad1e7b21eb523e3ee727cdf99c6a72c4e0709c5

> Some Table examples are not built correctly
> -------------------------------------------
>
>                 Key: FLINK-20464
>                 URL: https://issues.apache.org/jira/browse/FLINK-20464
>             Project: Flink
>          Issue Type: Bug
>          Components: Examples
>    Affects Versions: 1.12.0
>            Reporter: Dawid Wysakowicz
>            Assignee: Dawid Wysakowicz
>            Priority: Critical
>              Labels: pull-request-available
>             Fix For: 1.12.1
>
>
> Some examples were moved to the {{org.apache.flink.table.examples.scala.basics}} package but the pom.xml was not updated. This means the example jars are not built correctly and do not contain the classes.
> Examples that I noticed:
> * org.apache.flink.table.examples.scala.basics.StreamTableExample
> * org.apache.flink.table.examples.scala.basics.TPCHQuery3Table
> We should update the {{includes}} sections e.g.:
> {code}
> <execution>
> 	<id>StreamTableExample</id>
> 	<phase>package</phase>
> 	<goals>
> 		<goal>jar</goal>
> 	</goals>
> 	<configuration>
> 		<classifier>StreamTableExample</classifier>
> <!--- The sections below should be updated -->
> 		<archive>
> 			<manifestEntries>
> 				<program-class>org.apache.flink.table.examples.scala.StreamTableExample</program-class>
> 			</manifestEntries>
> 		</archive>
> 		<includes>
> 			<include>org/apache/flink/table/examples/scala/StreamTableExample*</include>
> 		</includes>
> 	</configuration>
> </execution>
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)