We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometimes test "select will emit in chunks sized equal to statement pageSize" just fails
[info] *************FAILURES************** [info] com.ringcentral.cassandra4io.Cassandra4IOTests [error] - select will emit in chunks sized equal to statement pageSize 478ms [error] assertion failed (src/it/scala/com/ringcentral/cassandra4io/CassandraSessionSuite.scala:93) [error] [error] } yield expect(result.nonEmpty && result.map(_.size).forall(_ == 2)) [error] | | | | | | | | [error] | true | | | | false com.ringcentral.cassandra4io.CassandraSessionSuite$$Lambda$1443/0x00000008009c8040@33f6e111 [error] | | | | com.ringcentral.cassandra4io.CassandraSessionSuite$$Lambda$1442/0x00000008009bb040@121fee95 [error] | | | List(2, 2, 1) [error] | | List(Chunk(two, three), Chunk(null, null), Chunk(one)) [error] | false [error] List(Chunk(two, three), Chunk(null, null), Chunk(one)) [error]
The text was updated successfully, but these errors were encountered:
I'd suggest changing forall(_ == 2) to forall(_ <= 2)
forall(_ == 2)
forall(_ <= 2)
Sorry, something went wrong.
Or even delete this test. From datastax:
Note that the page size is merely a hint; the server will not always return the exact number of rows, it might decide to return slightly more or less.
No branches or pull requests
Sometimes test "select will emit in chunks sized equal to statement pageSize" just fails
The text was updated successfully, but these errors were encountered: