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
search_users
Encountered this while doing some tests (bench code]:
pub fn generate_key_entries(num_entries: u64) -> Vec<(AkdLabel, AkdValue)> { let mut label = BytesMut::with_capacity(LABEL_VALUE_SIZE_BYTES); let mut value = BytesMut::with_capacity(LABEL_VALUE_SIZE_BYTES); (0..num_entries) .map(|i| { label.put_u64(i); label.resize(LABEL_VALUE_SIZE_BYTES, 0u8); let l = label.split().freeze(); value.put_u64(i); value.resize(LABEL_VALUE_SIZE_BYTES, 0u8); let v = value.split().freeze(); (AkdLabel(l.to_vec()), AkdValue(v.to_vec())) }) .collect()
results in duplicate user errors in the temp table we create in MySQL (search_users).
I isolated the code in here to see whether there are any duplicates but that is not the case (including in only-labels).
Creating this issue to track this further.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Encountered this while doing some tests (bench code]:
results in duplicate user errors in the temp table we create in MySQL (
search_users
).I isolated the code in here to see whether there are any duplicates but that is not the case (including in only-labels).
Creating this issue to track this further.
The text was updated successfully, but these errors were encountered: