Oleg V. Kozlyuk

Results 77 comments of Oleg V. Kozlyuk

Hi Terence, ~~Does the same error appear if both options are off? I assume that if you have `wait_for_async_insert=0` then you may just not see the error because the server...

This is a service query performed once on opening a new connection. If you create a new connection class for every request, then it would accompany every query. You should...

Hi. Yes indeed, unfortunately multiple statements are not supported by server itself. You can however use sessions to achieve use of temporary tables - as long as you make your...

Hi, Thank you for your PR, I appreciate the intent to help with optimization. However, according to benchmark it doesn't quite improve performance and in fact makes it slightly worse:...

The reason for this is that I have opted to use BigInteger for `ClickHouseDecimal` as I wasn't confident in my ability to produce well-optimized `Int128`/`Int256` classes, and there is no...

As a heads-up - I am looking into this in background, however, it would require rewriting ClickHouseDecimal completely to use blittable fixed-length integer types. The challenge is that from my...

There is an init-only property ColumnNames which can be used to pass the eponymous parameter on object init: ``` using var bulkCopy = new ClickHouseBulkCopy(connection) { DestinationTableName = targetTable, ColumnNames...