-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Add test method for empty pages #260
Add test method for empty pages #260
Conversation
Adds a test method to SimpleStatementCcmIT that checks if SimpleStatement with page size 1 correctly fetches all rows. Covers issue scylladb#254.
If there are multiple empty pages consecutively, the old logic did not handle the situation correctly. Use a while loop to move past many possible empty pages. (cherry picked from commit 40da47a)
0974ec3
to
c9f3eb6
Compare
1 check is still failing. |
[INFO] Results: |
Debugging the failing test, it doesn't seem to reproduce localy. |
The |
The test (that was failing with Maybe the newer version of CCM doesn't correctly configure the cluster which results in a longer startup time. |
Bisecting CCM yields this commit: scylladb/scylla-ccm@dd9ff60
|
Trying if the tests pass on Github CI with older CCM. |
f016d45
to
19db6c7
Compare
The test pass with older CCM, scylladb/scylla-ccm#550 will fix the master CCM. |
CCM PR was merged. |
828797f
to
64263a4
Compare
Use a pinned version of scylla-ccm instead of master to prevent accidental breakage of Java Driver CI.
64263a4
to
a06c36b
Compare
Adds a test method to SimpleStatementCcmIT that checks if SimpleStatement with page size 1 correctly fetches all rows.
Fixes #254