mattcasters commented on issue #6111: URL: https://github.com/apache/hop/issues/6111#issuecomment-3627358954
The way that setting values on a PreparedStatement in a JDBC work in Hop is that it's done here for the various data types: https://github.com/apache/hop/blob/f2f9b125ac62bbef6a69ea0069a91bf027a009e6/core/src/main/java/org/apache/hop/core/row/value/ValueMetaBase.java#L5928 You can see for the various data types how the options in the `IDatabaseMeta` implementation affect this behavior. It's important to have a healthy dose of distrust versus the quality of the JDBC drivers in these cases. If needed we can tweak the Clickhouse implementation over here: https://github.com/apache/hop/blob/main/plugins/databases/clickhouse/src/main/java/org/apache/hop/databases/clickhouse/ClickhouseDatabaseMeta.java -- 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]
