Skip to content
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

General bug fixes #4

Closed
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a14e74f
Create main.yml
nathan-bo May 25, 2022
f4f78c8
Delete main.yml
nathan-bo May 25, 2022
7f4d028
SPDB-126: status: don't include private headers from public headers
isaac-io Jun 15, 2021
69ba5bb
build: fix clang diagnostics
isaac-io Jun 20, 2021
5ef4982
tests: add initialisation in gtest in order to resolve a GCC diagnostic
isaac-io May 19, 2021
6efd4c8
tests: resolve GCC diagnostics
isaac-io May 20, 2021
add71b4
build: compilation fixes
Yuval-Ariel May 17, 2022
6fae92d
SPDB-165: build: fix building on CentOS 7 with old versions of gflags…
isaac-io Jul 6, 2021
e128cab
SPDB-556: build: fix clang 12 compilation errors
isaac-io Mar 9, 2022
0934f20
SPDB-553: build: support sccache in the CMake config
isaac-io Mar 8, 2022
9817128
SPDB-181: tests: add missing `override` specifier in gtest to fix a c…
isaac-io Jul 8, 2021
ee1bb9e
SPDB-87: build: fix clang compilation errors
isaac-io Apr 14, 2021
fbf2dd9
Create ci-pipeline.yml
nathan-bo Jun 15, 2022
29581c1
Create full-tests.yml
nathan-bo Jun 15, 2022
32652fb
Create new_release_line.yml
nathan-bo Jun 15, 2022
d3747f0
changed "rocksdb" to "speedb" in code
nathan-bo Jun 15, 2022
e078721
Update sanity_check.yml
nathan-bo Jun 15, 2022
a34726a
Update ci-pipeline.yml
nathan-bo Jun 15, 2022
011a230
fixed manual trigger for ci pipeline
nathan-bo Jun 15, 2022
d3f9c33
updated triggers
nathan-bo Jun 15, 2022
26433da
Create ci_pipeline.yml
nathan-bo Jun 15, 2022
b6f97b0
Update ci_pipeline.yml
nathan-bo Jun 15, 2022
d12f7fc
Update ci_pipeline.yml
nathan-bo Jun 15, 2022
9cb91f6
removed old pipeline
nathan-bo Jun 15, 2022
5f6fa96
Update ci_pipeline.yml
nathan-bo Jun 15, 2022
04e3f60
Update ci_pipeline.yml
nathan-bo Jun 15, 2022
93bc266
changed triggers to manual+pr
nathan-bo Jun 16, 2022
b6f0355
Create fuzz.yml
nathan-bo Jun 16, 2022
1014675
Update fuzz.yml
nathan-bo Jun 19, 2022
118fe39
fixed upstream on sanity pipeline
nathan-bo Jun 20, 2022
08ca924
SPDB-180: general: avoid comparing Status using == as it only compare…
isaac-io Jul 8, 2021
468fdb5
SPDB-156: db_test: add test for - forward the incomplete status on no_io
Yuval-Ariel May 17, 2022
57bf33a
SPDB-341: optimistic_transaction_example: fix snapshots leak
isaac-io Nov 16, 2021
01d6e5f
SPDB-571: add SetOpenedSuccessfully to db_impl
Yuval-Ariel Mar 17, 2022
94e1867
SPDB-197: options: don't set memtable_whole_key_filtering in the pres…
isaac-io Jul 21, 2021
b32f447
SPDB-243: test_util: fix custom comparators breakage after SPDB-197
isaac-io Oct 10, 2021
0254cdd
SPDB-381: tests: fix tests that use custom comparators
isaac-io Dec 8, 2021
bcee921
SPDB-96: ldb: fix get to print the entire value
isaac-io Apr 27, 2021
efa42c2
SPDB-534: db_bench: fix rocksdb bug of last_ref assertion
Yuval-Ariel Feb 23, 2022
cf4ff2c
SPDB 521: db_bench: fix SeekRandom and ReadRandomWriteRandom
Yuval-Ariel Jun 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests: resolve GCC diagnostics
isaac-io committed Jun 12, 2022
commit 6efd4c85360cdde35bbb437bbf971abdf19912e1
4 changes: 2 additions & 2 deletions options/options_test.cc
Original file line number Diff line number Diff line change
@@ -3439,7 +3439,7 @@ TEST_F(OptionsParserTest, ParseVersion) {
const std::vector<std::string> invalid_versions = {
"a.b.c", "3.2.2b", "3.-12", "3. 1", // only digits and dots are allowed
"1.2.3.4",
"1.2.3" // can only contains at most one dot.
"1.2.3", // can only contains at most one dot.
"0", // options_file_version must be at least one
"3..2",
".", ".1.2", // must have at least one digit before each dot
@@ -3603,7 +3603,7 @@ TEST_F(OptionsParserTest, DumpAndParse) {
DBOptions base_db_opt;
std::vector<ColumnFamilyOptions> base_cf_opts;
std::vector<std::string> cf_names = {"default", "cf1", "cf2", "cf3",
"c:f:4:4:4"
"c:f:4:4:4",
"p\\i\\k\\a\\chu\\\\\\",
"###rocksdb#1-testcf#2###"};
const int num_cf = static_cast<int>(cf_names.size());