java-driver
java-driver copied to clipboard
DataStax Java Driver for Apache Cassandra
Would increase version further but something in the build has pretty strict check wrt binary compatibility (need to figure out how to increase baseline). **EDIT**: Looks like it's `org.revapi` that...
So: while this may seem trivial, profiling showed significant `Object[]` allocations here (since `Object.hashCode(Object... args)` takes varargs which gets converted into `Object[]`) so figured out it's worth improving upon. Should...
Fix [CASSANDRA-19931](https://issues.apache.org/jira/browse/CASSANDRA-19931). Example OR operator: ``` assertThat( selectFrom("foo") .all() .where(Relation.column("k").isEqualTo(literal(1))) .and() .where(Relation.column("l").isEqualTo(literal(2))) .or() .where(Relation.column("m").isEqualTo(literal(3))) .orderBy("c1", ASC) .orderBy("c2", DESC)) .hasCql("SELECT * FROM foo WHERE k=1 AND l=2 OR m=3 ORDER BY...
Removed previous obsolete files. Added the HTMLs automatically generated by `mkdocs` from the build script in [this branch](https://github.com/SiyaoIsHiding/java-driver/tree/doc) on the 4.19.0 tag. Those HTMLs can be previewed here: https://siyaoishiding.github.io/java-driver/ As...
Fixes: [CASSJAVA-92](https://issues.apache.org/jira/browse/CASSJAVA-92)
Ready for review
Using the tool [mkdocs](https://www.mkdocs.org/) to build our doc. Changes mainly consist of the following parts: 1. Adding `mkdocs.yaml` for configuration, and removing the obsolete`docs.yaml` 2. Symlinks. It's a workaround of...
Update ESRI + json versions to match what's in current versions of DSE
Aiming for a more modern version of #1901