singhpk234 commented on code in PR #1802: URL: https://github.com/apache/polaris/pull/1802#discussion_r2124954152
########## persistence/relational-jdbc/src/main/java/org/apache/polaris/persistence/relational/jdbc/models/ModelEntity.java: ########## @@ -178,12 +180,28 @@ public Map<String, Object> toMap() { map.put("purge_timestamp", this.getPurgeTimestamp()); map.put("to_purge_timestamp", this.getToPurgeTimestamp()); map.put("last_update_timestamp", this.getLastUpdateTimestamp()); - map.put("properties", this.getProperties()); - map.put("internal_properties", this.getInternalProperties()); + if (databaseType.equals(DatabaseType.POSTGRES)) { + map.put("properties", toPGobject(this.getProperties())); Review Comment: PG specialization is now required for the CI to make happy as what happens unlinke Statements prepareStatement expects the PG type hence, i added the same. -- 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-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org