davidradl commented on code in PR #176:
URL:
https://github.com/apache/flink-connector-jdbc/pull/176#discussion_r2322635808
##########
flink-connector-jdbc-postgres/src/main/java/org/apache/flink/connector/jdbc/postgres/database/catalog/PostgresTypeMapper.java:
##########
@@ -154,6 +155,8 @@ protected DataType getMapping(String pgType, int precision,
int scale) {
return DataTypes.ARRAY(DataTypes.CHAR(precision));
case PG_CHARACTER_VARYING:
return DataTypes.VARCHAR(precision);
+ case PG_UUID:
+ return DataTypes.VARCHAR(36);
Review Comment:
could we add tests to drive this please for Postgres?
--
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]