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

fix(populate): handle virtual populate on array of UUIDs #15329

Merged
merged 4 commits into from
Mar 27, 2025

Conversation

vkarpov15
Copy link
Collaborator

Fix #15315

Summary

A bit of a hack to unblock #15315 and allow virtual populate on array of UUIDs. String() on a Binary value returns a unicode string that isn't properly indexable when doing doc = resultDocs[sid];.

Future improvement: make Mongoose UUID types use BSON UUID class

Examples

@vkarpov15 vkarpov15 added this to the 8.12.3 milestone Mar 26, 2025
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

A pull request to fix the virtual populate functionality for an array of UUIDs by adding a test case and implementing a workaround in converting BSON Binary UUID values.

  • Added a test case in test/model.populate.test.js that verifies UUID field population
  • Introduced a conditional handling in assignRawDocsToIdStructure.js to convert Binary UUIDs using id.toUUID()

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
test/model.populate.test.js Adds a test case to verify virtual populate functionality for UUID fields
lib/helpers/populate/assignRawDocsToIdStructure.js Implements a workaround to handle Binary UUIDs by converting them to a string via id.toUUID()
Comments suppressed due to low confidence (1)

lib/helpers/populate/assignRawDocsToIdStructure.js:81

  • Consider confirming that id.toUUID() reliably returns a string. If it already does, the String() wrapping on line 83 might be unnecessary. Also, adding a clarifying comment on why this conversion is needed could help future maintainers.
if (id?.constructor?.name === 'Binary' && id.sub_type === 4 && typeof id.toUUID === 'function') {

vkarpov15 and others added 3 commits March 27, 2025 10:50
Co-authored-by: hasezoey <hasezoey@gmail.com>
Co-authored-by: hasezoey <hasezoey@gmail.com>
@vkarpov15 vkarpov15 merged commit 63b5d76 into master Mar 27, 2025
75 checks passed
@hasezoey hasezoey deleted the vkarpov15/gh-15315 branch March 27, 2025 15:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Virtual Populate foreignField is array in combination with UUIDs
2 participants