Dale McDiarmid
Dale McDiarmid
Can we assume the parser is thread safe and can be used by multiple threads concurrently for `parse`?
Am i correct that that currently samlify doesn't validate the InResponseTo against the ID of the AuthnRequest? If not, does this not prevent reuse of AuthnRequests and thus the limitation...
As part of supporting the ClickHouse-go client we wish to ensure the handling of datetimes is consistent with other client libraries. The following represents the agreed behavior for all clients:...
JSON v2
Issue to track missing features from current JSON support. Contributors feel free to pick up, none super urgent and all nice to have: - [ ] Support for pointers inside...
v1 of this driver allowed different types to be passed for a column at insertion type, with this necessary type conversion supported implicitly. Whilst this was convenient, it also allowed...
We have quite a comprehensive testing, especially when we consider the testing in ch-go. Our current tests could be improved, however. Specifically: - [ ] Tests rely on a ClickHouse...
We don't support in http - its [supported via headers](https://clickhouse.com/docs/en/interfaces/http#default-database) and [useful](https://altinity.com/blog/2018/9/28/progress-reports-for-long-running-queries-via-http-protocol)
Some challenges with batches: 1. For columnar insertion we provide `Append` methods on columns e.g. https://github.com/ClickHouse/clickhouse-go/blob/v2/examples/native/write-columnar/main.go. For some types, `Append` can fail e.g. when parsing Strings as IP addresses. Currently,...