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

[SYS-6354] Fix compilation issues. #291

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion cloud/aws/aws_s3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ IOStatus S3StorageProvider::DoGetCloudObject(const std::string& bucket_name,
// Close() will be called in the destructor of the object returned by
// this factory. Adding an inner scope so that the destructor is called
// before checking fileCloseStatus.
auto ioStreamFactory = [=, &fileCloseStatus]() -> Aws::IOStream* {
auto ioStreamFactory = [this, destination, &fileCloseStatus]() -> Aws::IOStream* {
FileOptions foptions;
foptions.use_direct_writes =
cfs_->GetCloudFileSystemOptions().use_direct_io_for_cloud_download;
Expand Down
1 change: 1 addition & 0 deletions db/version_set.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2715,6 +2715,7 @@ Status Version::ProcessBatch(
MultiGetRange file_range = fp.CurrentFileRange();
TableCache::TypedHandle* table_handle = nullptr;
bool skip_filters = IsFilterSkipped(static_cast<int>(fp.GetHitFileLevel()),
read_options,
fp.IsHitFileLastInLevel());
bool skip_range_deletions = false;
if (!skip_filters) {
Expand Down
Loading