Martin Sucha

Results 163 comments of Martin Sucha

I've re-read this issue and it is still not clear to me when it is an issue using prepared statements. @rockxsj could you please provide a more concrete example of...

I wonder if this could be related to #727

There is `pool.addHost` in `reconnectDownedHosts`. `reconnectDownedHosts` periodically adds nodes that are marked as down. However, we set the host state as down only when we get such event from the...

I tried to reproduce using a similar docker-compose setup as above and it seems that 1418e1105e720e09744dd50f9b21aed3911bf434 is much quicker to reconnect than 909f2a77f46e7e16f59959bfce1f7bdcc4bb28c5. The latter reconnects about up to a...

@amnonh Hi! It is possible to set custom [HostFilter](https://godoc.org/github.com/gocql/gocql#HostFilter) in [ClusterConfig](https://godoc.org/github.com/gocql/gocql#ClusterConfig), which will limit the hosts that the client connects to. See also [WhiteListHostFilter](https://godoc.org/github.com/gocql/gocql#WhiteListHostFilter)

Currently we clear schema on the schema change events: https://github.com/gocql/gocql/blob/93eedddb64669e218f31cff48059066b03fabf83/events.go#L106-L123 Do I understand correctly that this issue is for updating the individual schema changes based on the contents of messages...

This is probably caused because a map does not have specified iteration order (neither in Go nor the CQL protocol), so you can end up with different binary representations of...

@vthiery thank you for reporting the issue and the nice reproducer! I was able to reproduce this issue using the code above with the latest gocql master (5913df4d474e0b2492a129d17bbb3c04537a15cd). Seems that...

Okay, after a bit more debugging I know what happens: There is a `query.Exec` call followed by `query.Iter` call for the same query in the reproducer. Both calls execute the...

Hello @evildecay, sorry for the late reply. Based on the stack trace above it seems that there is a final_function function referenced in user defined aggregates as returned by: ```cql...