-
Notifications
You must be signed in to change notification settings - Fork 72
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
db_bench: int conversion bug inserted in #200 #263
Labels
bug
Something isn't working
Comments
Yuval-Ariel
added a commit
that referenced
this issue
Nov 23, 2022
Yuval-Ariel
added a commit
that referenced
this issue
Nov 28, 2022
Yuval-Ariel
added a commit
that referenced
this issue
Nov 28, 2022
Yuval-Ariel
added a commit
that referenced
this issue
Apr 30, 2023
Yuval-Ariel
added a commit
that referenced
this issue
May 4, 2023
udi-speedb
pushed a commit
that referenced
this issue
Nov 13, 2023
udi-speedb
pushed a commit
that referenced
this issue
Nov 15, 2023
udi-speedb
pushed a commit
that referenced
this issue
Dec 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tools/db_bench_tool.cc:6835:26: error: implicit conversion loses integer precision: 'XXH64_hash_t' (aka 'unsigned long long') to 'unsigned int' [-Werror,-Wshorten-64-to-32]
unsigned int xxh64 = XXH64(str.data(), str.length(), 0);
solution:
change unsigned int to uint64_t
The text was updated successfully, but these errors were encountered: