Mirro Mutth
Mirro Mutth
Ok, got it. It is caused by the driver has disabled CLIENT_LOCAL_FILES capbilities and do not support LOCAL INFILE Request (server message). This feature should be supported, I will try...
Hi there, apologies for the late reply. Currently, this would not be a driver issue. R2DBC was using [r2dbc-pool](https://github.com/r2dbc/r2dbc-pool) for pooling, and the driver implementation would not consider about connection...
Hi there, Thanks for the report. I tried, but have not reproduce this. Did you use `createBatch` for insert records, or `createStatement` with multiple bindings for insert, or just `Repository.saveAll`?...
Sorry, but I still be not reproduce this problem. 1. First time, I ran it on my computer but connections just be aborted by timeout and throw lots of abort...
The `FieldInformation` may overlap and conflict with SPI v0.9.0 interfaces, so I need refactor it. And make sure that the new one won’t have similar conflicts.
Hi there, Strictly speaking, the driver does not block any threads. Here I understand it as when to emit the first row data in the result stream. There may have...
Hi, @btakeya, Great thanks for @mp911de suggestion. Apologies for the late reply. Well, this should be a little difference between Java and Kotlin. In Java, `double.class` is a primitive class,...
Sounds like you are using AnalysisDB for MySQL. This exception is reported by the AnalysisDB server, because the exception is created by `ExceptionFactory.mappingSqlState`. Therefore, this may be a problem caused...
Hi there, thanks for your report. It seems like `io.projectreactor:reactor-bom:Dysprosium-SR8` was using different versions of `reactor-core` for `reactor-netty`, `reactor-extra` and `reactor-netty`. I have tested `Dysprosium-SR11`, the dependency management is using...
Hi there, apologies for the late reply. A string value cannot be a bool type, this should be a user error. Use boolean `true`/`false` instead of a string value.