query filtering crashes due to null document fixed
query.exec([{"title": "hello"}, null], {"select_list": "title"}); // before: TypeError: list[i] is null // after: [{"title": "hello"}]
Showing
Please register or sign in to comment
lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours
query.exec([{"title": "hello"}, null], {"select_list": "title"}); // before: TypeError: list[i] is null // after: [{"title": "hello"}]