You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2022/04/18 08:11:33 UTC

[GitHub] [flink-table-store] tsreaper opened a new pull request, #92: [FLINK-27286] Fix table store connector throws ClassNotFoundException: org.apache.flink.table.store.shaded.org.apache.flink.connector.file.table.RowDataPartitionComputer

tsreaper opened a new pull request, #92:
URL: https://github.com/apache/flink-table-store/pull/92

   This is caused by FLINK-27172. Currently table store excludes file connector dependencies shading as follows:
   ```
   <exclude>org.apache.flink.connector.base.*</exclude>
   <exclude>org.apache.flink.connector.file.*</exclude>
   ```
   
   However this only excludes classes in org.apache.flink.connector.base and org.apache.flink.connector.file packages and does not exclude classes in their sub-packages. The correct excluding pattern should be:
   ```
   <exclude>org.apache.flink.connector.base.**</exclude>
   <exclude>org.apache.flink.connector.file.**</exclude>
   ```
   
   This change will also be checked by e2e tests in the near future.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink-table-store] JingsongLi merged pull request #92: [FLINK-27286] Fix table store connector throws ClassNotFoundException: org.apache.flink.table.store.shaded.org.apache.flink.connector.file.table.RowDataPartitionComputer

Posted by GitBox <gi...@apache.org>.
JingsongLi merged PR #92:
URL: https://github.com/apache/flink-table-store/pull/92


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org