Ahmed Ashour

Results 73 comments of Ahmed Ashour

Actually, the code has been changed in https://github.com/andrewdodd/influxdb-java/commit/dd8df3b904b16e66be7e6b4c87830100c4e177ee I guess you can now use: ``` OkHttpClient.Builder okHttpClientBuilder = new OkHttpClient().newBuilder() .connectTimeout(40, TimeUnit.SECONDS) .readTimeout(60, TimeUnit.SECONDS) .writeTimeout(60, TimeUnit.SECONDS); influxDB = InfluxDBFactory.connect("http://localhost:8086", "root",...

I quickly checked, but I see that both [InfluxDB](https://docs.influxdata.com/influxdb/v1.7/write_protocols/line_protocol_reference/) and [Java](https://floating-point-gui.de/languages/java/) use IEEE 754 64-bit floating point numbers. Below is a sample case, in which both systems return the same...

I guess if it is implemented in InfluxDB, we wouldn't need this. Please look into https://github.com/influxdata/influxdb/issues/4089

I assume there are not objections, please go ahead.

Thanks for your feedback. This PR changes `main` and touches only PostgreSQL, this PR would have conflict with #6929 (which should be merged first). I don't consider this as a...

As of the current `master`, the issue #6551 seems to still happen with both Oracle and PostgreSQL. I believe that is a different scenario than #6788. This PR is still...

https://dart-review.googlesource.com/c/sdk/+/279962

I think JavaScript doesn't allow commas in its function bodies, for [example](https://playcode.io/1202127): ```javascript var f = () => { console.log('abc'), return 1; } console.log(f()); ``` doesn't work. Changing the comma...

https://dart-review.googlesource.com/c/sdk/+/284021

https://dart-review.googlesource.com/c/sdk/+/211243