Dale McDiarmid

Results 194 comments of Dale McDiarmid

Yes id imagine configuring some columns explicitly, to exploit codes etc, with a column for any remaining dynamic JSON. Either way in the next release of the plugin, tuples, maps...

@jkaflik is taking on maintenance now - his decision here.

We want to do this. However, currently, acquire returns ``` func (ch *clickhouse) acquire(ctx context.Context) (conn *connect, err error) { ``` a connect struct has access to the internals of...

I’m trying to avoid coding in strategies which are app specific - and avoid the need to constantly add new approaches. We could possibly just allow a function where the...

The challenge I see with this is whilst you’re controlling the server you’re connecting to, there would be no pool. Connections wouldn’t be reused. Maybe we could require the user...

@yuzhichang we actually have this already https://github.com/ClickHouse/clickhouse-go/blob/main/examples/clickhouse_api/connect_settings.go#L40-L46 via `DialContext` - this allows you to control how the low-level connection is created. The current proposal is to add a function that...

@ns-gzhang note that we did merge the connection reset code in the event of error. If you update your driver in production maybe you can tell us if it still...

I will PR the fix for this and correct these types . `Decimal(38, 0)` was selected as this is the eqv. of what BigQuery applied. I assumed it could grow...

@DGuang21 a helpful example of what you want to be able to do, but currently can't, would be useful for reference. Took me a while to understand your need.