Martin Sucha

Results 163 comments of Martin Sucha

I don't think we need to add support for date type from protocol version 3 since all currently supported Cassandra versions support at least version 4 of CQL protocol and...

Hello! The line where the code panics line 483 in Session.Close: https://github.com/gocql/gocql/blob/473180d4afd379efd8f069edf4389bf2c0b7c96a/session.go#L482-L487 That means that you call `Closed()` on a `*Session` that is `nil`. It seems to me that you...

Hi @steve-gray ! Thanks for the report. It is interesting that the CI for gocql passed. I just tried to reproduce the issue locally and I see the error with...

Hi! If you mean #1646, that is unrelated. #1646 is a fix for DataStax Enterprise. I used select from system.peers in the reproducer only because it is a table that...

That is true. We could bump the major version. If we do, we should also get rid of other deprecated APIs. Also, question is what gocql/v2 will mean in terms...

Confirmed that the parsing is broken in gocql `ea66763d643a88084f74a4d5ea53f48aac0d2b2c` with Cassandra 4.0-rc2, where the string in `release_version` is `4.0-rc2`. Things that are affected by the wrong parsing: * Setting the...

I don't think this belongs to the core gocql package. If you need a UUID type that works with both gocql and sql package, it is pretty simple to implement...

Currently `getTypeInfo` does not handle user-defined types. We'd need to pass information about all the types and recursively reference the other types (since user-defined types can contain other user-defined types).

Hmm, based on the above information it looks as if there are no bound values for the query when the panic is hit. Could you share a snippet of your...

@evildecay your backtrace seems to be unrelated to the one in the original post, could you please open a separate issue? Ideally with more information - are you able to...