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
Insufficient testing for Task 3。
The reason is commented here
I suggest add some modification to the test function test_task3_storage_get:
test_task3_storage_get
10
let sst1 = generate_sst( 10, dir.path().join("10.sst"), vec![ (Bytes::from_static(b"0"), Bytes::from_static(b"233")), (Bytes::from_static(b"10"), Bytes::from_static(b"test")), (Bytes::from_static(b"00"), Bytes::from_static(b"2333333")), (Bytes::from_static(b"4"), Bytes::from_static(b"23")), ], Some(storage.block_cache.clone()), );
assert_eq!( storage.get(b"10").unwrap(), Some(Bytes::from_static(b"test")) );
The text was updated successfully, but these errors were encountered:
I'll revisit this issue before closing it, thanks for filing anyways :)
Sorry, something went wrong.
No branches or pull requests
Insufficient testing for Task 3。
The reason is commented here
I suggest add some modification to the test function
test_task3_storage_get
:10
to sst110
The text was updated successfully, but these errors were encountered: