-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Better detecting of invalid S2 geo primitives #52260
Conversation
@@ -337,7 +337,7 @@ friend struct CacheMetadata; | |||
{ | |||
{ | |||
std::lock_guard lock(mutex); | |||
queue.emplace(file_segment->key(), file_segment->offset(), file_segment); | |||
queue.push(DownloadInfo{file_segment->key(), file_segment->offset(), file_segment}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is needed to compile with clang-15
. Unfortunately this is still the latest available version on Manjaro Linux.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can always build the latest clang-17 from master:
git clone [email protected]:llvm/llvm-project.git
mkdir llvm-build
cd llvm-build
cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release -DLLVM_ENABLE_PROJECTS=all -DLLVM_TARGETS_TO_BUILD=all ../llvm-project/llvm
time ninja
sudo ninja install
Linux package managers are irrelevant to modern software development.
This is an automated comment for commit c8351b1 with description of existing statuses. It's updated for the latest CI running
|
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md):
Check whether S2 geo primitives are invalid as early as possible on ClickHouse side. This closes: #27090