java-driver icon indicating copy to clipboard operation
java-driver copied to clipboard

DataStax Java Driver for Apache Cassandra

Results 92 java-driver issues
Sort by recently updated
recently updated
newest added

Correct the ordering of the literals LIMIT and PER PARTITION LIMIT for SELECT queries.

On top of https://github.com/apache/cassandra-java-driver/pull/1949 We need to merge that one first before we merge this one. Here is an [example](https://github.com/SiyaoIsHiding/java-driver-otel-example) system using this branch. We should find a better place...

Fixes [CASSJAVA-71](https://issues.apache.org/jira/browse/CASSJAVA-71). Currently, when client executes below code: ``` ResultSet rs = session.execute(SimpleStatement.newInstance("select * from kv").setPageSize(2).setTracing(true)); Iterator iter = rs.iterator(); while (iter.hasNext()) { iter.next(); } ``` The following trace events...

With CASSJAVA-52, the java-driver-guava-shaded module is now in tree. This appears to work great, but there is a slight issue with the dependency tree that allows unshaded guava packages to...

Fixes [CASSJAVA-62](https://issues.apache.org/jira/browse/CASSJAVA-62).

I found a corner case when using Data API (https://github.com/stargate/data-api/issues/1806). I cannot use `ann` as my table name, but I can use it in CQL: ``` cassandra@cqlsh:default_keyspace> CREATE TABLE default_keyspace."ann"...

upgrade testng version that is vulnerable