twalthr commented on a change in pull request #17459:
URL: https://github.com/apache/flink/pull/17459#discussion_r730752796
##########
File path:
flink-connectors/flink-connector-jdbc/src/test/java/org/apache/flink/connector/jdbc/JdbcDataTypeTest.java
##########
@@ -101,50 +101,46 @@
createTestItem("postgresql", "ARRAY<INTEGER>"),
// Unsupported types throws errors.
- createTestItem(
- "derby", "BINARY", "The Derby dialect doesn't support
type: BINARY(1)."),
createTestItem(
"derby",
- "VARBINARY(10)",
- "The Derby dialect doesn't support type:
VARBINARY(10)."),
+ "BINARY",
+ "Unsupported conversion from data type 'BINARY(1)'
(conversion class: [B) to type information. Only data types that originated
from type information fully support a reverse conversion."),
Review comment:
The exception indicates that are using a deprecated utility. We should
analyze the stack trace where this exception is coming from.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]