Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QuarkDB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eos
QuarkDB
Commits
fb8a94d5
There was a problem fetching the pipeline summary.
Commit
fb8a94d5
authored
7 years ago
by
Georgios Bitzes
Browse files
Options
Downloads
Patches
Plain Diff
Update qclient with fixed QSet::sscan, add test
parent
f54ebd55
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
deps/qclient
+1
-1
1 addition, 1 deletion
deps/qclient
test/e2e.cc
+4
-0
4 additions, 0 deletions
test/e2e.cc
with
5 additions
and
1 deletion
qclient
@
256e5f51
Compare
40feec72
...
256e5f51
Subproject commit
40feec72c5885042b65b047407e5fab91bbe9ee3
Subproject commit
256e5f51720eb543ac9c7f217dd46e2e70e823a0
This diff is collapsed.
Click to expand it.
test/e2e.cc
+
4
−
0
View file @
fb8a94d5
...
...
@@ -759,6 +759,10 @@ TEST_F(Raft_e2e, sscan) {
ASSERT_EQ
(
pair
.
first
,
"next:c"
);
ASSERT_EQ
(
pair
.
second
,
make_vec
(
"a"
,
"b"
));
pair
=
qset
.
sscan
(
pair
.
first
,
2
);
ASSERT_EQ
(
pair
.
first
,
"next:e"
);
ASSERT_EQ
(
pair
.
second
,
make_vec
(
"c"
,
"d"
));
QSet
qset2
(
*
tunnel
(
leaderID
),
"not-existing"
);
pair
=
qset2
.
sscan
(
"0"
,
2
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment