Benjamin Lerer
Benjamin Lerer
@daniel-rusu Thanks for the patch. I will be curious to see the JMH result when running the benchmark with Java 17 as the numbers in general differ a lot from...
Sorry for the delay, @daniel-rusu. I have been busy elsewhere. I will try to get some time to look into the patch in 2 weeks as I need to finish...
> Regarding the growing complexity of this class, perhaps a bit of unsquahsing would be good. I mean consider putting the logic for each Cassandra version range in a distinct...
The only reason why spin asserts were required was that the Auth framework use caching for permissions and roles. If you disable those caches by using `DatabaseDescriptor.setPermissionsValidity(0);` and `DatabaseDescriptor.setRolesValidity(0);` then...
What I had in mind was something like: ``` @Test public void testAbs() { assertAbsEquals(1, Int32Type.instance, 1); assertAbsEquals(0, Int32Type.instance, 0); assertAbsEquals(3, Int32Type.instance, -3); assertAbsEquals((byte) 1, ByteType.instance, (byte) 1); assertAbsEquals((byte) 0,...
My fear is that having two patterns like `FilterFooBar` and `DelegatingFooBar` will introduce another type of confusion. At this stage where methods have been public and overridable for years, making...