Markus Heiden

Results 32 comments of Markus Heiden

Is there any progress on this issue?

When implementing this PR I wondered why the errors in `AbstractErrorUtils#getGoogleAdsErrors(long, GoogleAdsFailureT)` are deduplicated via `if (!result.contains(error)) result.add(error)`? Using a `java.util.Set` in this case would IMO be more efficient because...

@xzel23 For automated builds Gradle would then automatically download and install some JDK for each build step of each build? Or is the downloaded JDK somehow cacheable?

Thanks for the fast answer, that helped me make it work. One thing that is not mentioned there: Downloaded JDKs are cached in `.gradle/jdks/`. If adding that directory to the...

I don't know why unrelated tests fail. Hopefully this is mergeable though.

Sorry, I thought that it was obvious what this PR wants to achieve. Here the corresponding issue #11775.

Hi @sjohnr, I did register it myself in our application and it works fine. I try to always contribute back the stuff that fixes my problems with OSS, so I...

I tested with 1.13.0 today and the problem seems to be fixed.

Is there still no batching possible, except directly via the Connection? Using the raw batches at the connection is risky because all escaping has to be done "by hand". Batches...

Thanks for pointing me to the batch usage of `DatabaseClient`. We will use that. Though the `DatabaseClient` does the job, it requires boilerplate code e.g. for batch inserts or updates:...