Jorge Solorzano
Jorge Solorzano
For a library it make sense to go for JDK 11 first, frameworks like Quarkus supports both Java 11 **and** Java 17 (using JDK 11 as baseline) and even Spring...
It's perfectly possible to write admission controllers and conversion webhooks using Fabric8 KC, but it requires having a Webhook REST API working in the app because the Kubernetes API server...
Ideally, (but this might bring its own challenges) is to be agnostic of the HTTP Client, and make it pluggable, if users want to use Apache HttpClient 5, or OkHttp...
I think is not a good idea to test the error message, it can change from version to version or even if logger is active, a check for the SQL...
I'm curious, what happen when a negative number in introduced? Can we have a check to allow only positive?
Well, thread-safety in JDBC is something that has [been](https://stackoverflow.com/questions/18897092/sharing-a-jdbc-connection-across-threads) [asked](https://stackoverflow.com/questions/9428573/is-it-safe-to-use-a-static-java-sql-connection-instance-in-a-multithreaded-syste) [many](https://stackoverflow.com/questions/1209693/is-mysql-connector-jdbc-thread-safe), [many](https://stackoverflow.com/questions/1531073/is-java-sql-connection-thread-safe) [times](https://stackoverflow.com/questions/1215979/jdbc-and-threading). The general consensus is that you should NOT share connections across threads, and in my opinion, a...
> I agree, however it turns out lots of uses depend on Statement.getWarnings thread safety. E.g. #927 Fully agree, as I said, some methods require thread safety, and it's fine...
@bokken from time to time TravisCI have some issues and degraded service.
I can work on a PR for bit(n), but it will take time to get it ready, if anyone is already working let me know. BTW deal with bit(n) requires...
Actually, no I don't test if this is sensitive to binary/text wire format, but I'm not sure how the metadata could change. It's even posible that a "bool" (or any...